Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between bool/Boolean, string/String etc [duplicate]

Possible Duplicate:
String vs string in C#

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

like image 562
Holyoxx Avatar asked Mar 03 '26 12:03

Holyoxx


2 Answers

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.

like image 105
VoodooChild Avatar answered Mar 06 '26 02:03

VoodooChild


Have a look at: String vs string in C#

like image 26
Artur Carvalho Avatar answered Mar 06 '26 03:03

Artur Carvalho