I am old-fashioned, and prefer "String" (class) to "string" (basic type) in C#. In Visual Studio, Intellisense always substitutes "string" for "String" so that I get things like:
static Dictionary<String, Dictionary<String, Tuple<String, String>>> s_edits = new Dictionary<string,Dictionary<string,Tuple<string,string>>>
__________________________________________________________
where the underlined section was added by Intellisense. Is there any way I can persuade VS to use "String"?
As you can imagine, trying to Google for "String" vs "string" isn't working :-(.