What is the difference between Bool and Boolean types in C#?
|
|
HTH, Kent |
||
|
|
|
|
I don't believe there is one. bool is just an alias for System.Boolean. |
||
|
|
|
|
They are one in the same. bool is just an alias for Boolean. |
||
|
|
|
|
There is no difference - bool is simply an alias of System.Boolean. http://msdn.microsoft.com/en-us/library/c8f5xwh7(VS.71).aspx |
||
|
|
|
|
They are the same. Boolean helps simplify conversion back and forth between C# and VB.Net. Most C# programmers tend to prefer 'bool', but if you are in a shop where there's a lot of both VB.Net and C# then you may prefer Boolean because it works in both places. |
||
|
|
|
|
As has been said, they are the same. There are two because bool is a C# keyword and Boolean a .Net class. |
||
|
|
|
One is an alias for the other. |
||
|
|
|
|
bool is an alias for the Boolean class. I use the alias when declaring a variable and the class name when calling a method on the class. |
||||||||||||
|
