string
System.String
The C# team posts answers to common questions and describes new language features
C# defines a number of aliases for CLR types. They may be used interchangably, and even mixed together, e.g.
string x = new System.String(' ', 5);.
string x = new System.String(' ', 5);
These are the aliases defined:
[Author: Jon Skeet]
PingBack from http://sharpcode.com.br/blogs/rafaelsilva/archive/2008/08/28/afinal-qual-a-diferen-231-a-de-string-e-string.aspx
Here is a post which explains the difference between a bool and a boolean
http://dotnetrobert.com/?q=node/22
Hope you find it useful.
DateTIme is a Struct!! (value type)... String is a Sealed Class, so you can use as a Object ;)
what is the differences between a string and a language?
string is like an alias/shorthand for System.String. Similarly, int is an alias/shosthand for System.Int16.
www.jeeshenlee.com/.../difference-between-string-and.html
@williams Alkali: the same difference as the difference between a spoon and a matchbox :P