Force Visual Studio 2010 use string instead of string

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

Is there any way to make VS2010 always generate a "String". I prefer to use .NET type names rather than C # aliases for types.

+3
source share
2 answers

string is an alias for String, so technically there is no difference between them.

+2
source

MSDN string " Unicode. string - String .NET Framework". string string.

0

All Articles