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

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -