What is difference between "String" and "string" ?


Answer:

"string" is an alias for System.String . So technically, there is no difference between them. It's like int vs. System.Int32
 
Very Simple

string is a type in c# while String is a type in .Net CLR.
Ultimately c# type is converted into .net type.


Tags : .net clr,difference between string & String in.net