Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force Visual Studio 2010 to use String instead of string

When Visual Studio 2010 generates code (example: select option to implement an interface), it generates "string" instead of "String", even if I have defined the interface with "String" parameters.

Is there a way to get VS2010 to always generate "String". My preference is to use the .NET type names, not the C# aliases for the types.

like image 484
Craig Pelkie Avatar asked Dec 02 '25 03:12

Craig Pelkie


1 Answers

string is an alias of String so technically there is no difference between the two.

like image 133
FIre Panda Avatar answered Dec 04 '25 07:12

FIre Panda