3

Possible Duplicate:
String vs string in C#

What is the big difference between these datatypes? and were should I use it?

Community
  • 1
  • 1
Holyoxx
  • 377
  • 1
  • 7
  • 16
  • 1
    possible duplicate of [String vs string in C#](http://stackoverflow.com/questions/215255/string-vs-string-in-c) and [What is the difference between Bool and Boolean types in C#](http://stackoverflow.com/questions/134746/what-is-the-difference-between-bool-and-boolean-types-in-c) – adrianbanks Jan 24 '11 at 00:45

2 Answers2

4

Short answer, there is no difference. They are just alias of each other, see

http://msdn.microsoft.com/en-us/library/ya5y69ds(VS.80).aspx for a complete list.

VoodooChild
  • 9,776
  • 8
  • 66
  • 99
3

Have a look at: String vs string in C#

Community
  • 1
  • 1
Artur Carvalho
  • 6,901
  • 10
  • 76
  • 105