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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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