danielr
danielr

Reputation: 130

Visual Studio C# camelCase code completion

I have used another IDE (Xamarin Studio on Mac) where you can type the first letters of a camel-cased variable/function/etc and it will guess that is the word you want.

Example (Xamarin Studio)

Is this possible in Visual Studio? (2015 Community Edition)

Upvotes: 0

Views: 788

Answers (1)

mehrdad
mehrdad

Reputation: 11

to make camel casing code completion work in visual studio you must write the first letter of each word uppercase. in VS2013 it does work, I mean when I type "console.wl" it shows me WriteLine but in VS2017 you must type "Console.WL" to show the appropriate method.

Upvotes: 1

Related Questions