Is there any difference between String and string in C# like int and Integer in Java? -


possible duplicate:
string vs string in c#

i understand there difference between integer , int in java,

similarly realised string , string kinda works in c# too, there differences in these 2? datatype vs class object?

no. string alias string.

same as:

int ==> int32 double ==> double 

and others.


Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -