vote up 11 vote down star

What is the difference between Bool and Boolean types in C#?

flag

8 Answers

vote up 32 vote down check

bool is an alias for System.Boolean just as int is an alias for System.Int32. See a full list of aliases here.

HTH, Kent

link|flag
vote up 9 vote down

I don't believe there is one.

bool is just an alias for System.Boolean.

link|flag
vote up 4 vote down

They are one in the same. bool is just an alias for Boolean.

link|flag
vote up 3 vote down

There is no difference - bool is simply an alias of System.Boolean.

http://msdn.microsoft.com/en-us/library/c8f5xwh7(VS.71).aspx

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

As has been said, they are the same. There are two because bool is a C# keyword and Boolean a .Net class.

link|flag
So wouldn't bool be better for cross-platform compatibility? – LuckyLindy Mar 11 at 4:11
vote up 1 vote down

One is an alias for the other.

link|flag
vote up 0 vote down

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.

link|flag
3  
Out of interest - why would you use both? I advocate using one or the other. Either use the aliases or don't, otherwise the code looks messy and inconsistent. – Kent Boogaart Sep 25 '08 at 17:42
I think it looks messy when you don't use both. Use the alias for declaring the datatype and use the actuall class name when accessing static methods: string x = String.Format("Today is: {0}", DateTime.Now); – Scott Dorman Sep 25 '08 at 17:49
So you'd do: int i = Int32.Parse(...); ? I have a couple of problems with that. Firstly, VS will highlight differently by default (I know you can change this but most devs just use the default syntax highlighting). Secondly, searching is harder especially with longs (long / Int64). – Kent Boogaart Sep 25 '08 at 18:20
Yes, that is the exact way it should be done. int is not the class name, you should not be calling methods on it. On the other hand, it is the builtin type, and defining Int32 i; is too verbose and not natural. – AviD Sep 25 '08 at 19:14
mixing aliases and class names just adds nothing to code clarity. Pick one and stick with it, imho – Arne Claassen Sep 9 at 22:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.