Possible Duplicate:
What’s the difference between String and string?
I have been some time working with C# and i have ever noticed any diference between both types.
String myStringAsClass;
string myStringAsStruct;
Is there any diference other than the clarification you may use on the code or convetion to use the static functions from String class and declarations from string struct?
Thank you very much!