Built-in type naming - keyword vs CLR type name
Is it possible to set the following preference regarding built-in type naming?
use keyword when referencing the type itself
use the CLR type name when accessing ctor or static members of the type
E.g.
string defaultValue = String.Empty;
int parsedValue = Int32.Parse("1");
object something = new Object();
Please sign in to leave a comment.