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

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

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -