Bohn
Bohn

Reputation: 26919

Any FREE plug-in for VisualStudio that has partial code completion?

VS2010: one thing Resharper has is that in Intellisence when we are typing the name of a method it shows all suggestions that have the words we are typing somewhere in their name so for example if method name is DoSomethingReallyCool() and I am not aware of this exact name but I just type "Really" then the its intelliseinse is also showing DoSomethingReallyCool() as a suggestion. this help me A LOT for coding. I was wondering if there is any FREE plug-in with this capability?

Upvotes: 0

Views: 47

Answers (2)

shunty
shunty

Reputation: 3768

Doesn't VS2010 already do this? My copy seems to.
If not then The Productivity Power tools may be what does it on my version. If not then it's still a jolly fine add-in anyway.

Upvotes: 1

DJ Quimby
DJ Quimby

Reputation: 3699

Visual Studio 2010 does this now without a plug in.

Take the following excerpt:

class Program {
    static void Main( string[] args ) {

    }

    static void ReallyCoolFunction() { };

    static void SuperCoolFunction() { };
}

If I type Cool inside the main body, both functions show up in the intellisense list.

Upvotes: 1

Related Questions