Possible Duplicate:
String vs string in C#
I understand there is a difference between Integer and int in Java,
Similarly I realised that String and string kinda works in C# too, is there any differences in these 2? Datatype vs Class object?
Possible Duplicate:
String vs string in C#
I understand there is a difference between Integer and int in Java,
Similarly I realised that String and string kinda works in C# too, is there any differences in these 2? Datatype vs Class object?
No. string is an alias for String.
Same as:
int ==> Int32
double ==> Double
and others.
There are no differences. string is just an alias for System.string:
The string data type is an alias for the System.String class.
.NET Book Zero page 57