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

link|improve this question

I would like this tagged with "coding-style" and answered in that context. – Daniel Coffman Jan 29 '10 at 22:54
15  
This isn't a coding style question. I asked what's the difference between the types, not which you prefer. – Gary Willoughby Jan 31 '10 at 0:28
feedback

8 Answers

up vote 84 down vote accepted

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

link|improve this answer
From the above link microsoft says The C# type keywords and their aliases are interchangeable But why we need Aliases, From my point of view Boolean is more meaningful then bool and Int32 is more meaningful then int then why aliases ??? – Asim Sajjad Mar 18 '10 at 11:39
1  
@asim: laziness? It's less typing and avoids the need to import System. Personally, I prefer the aliases. Typing "int" is far quicker than typing "Int32". – Kent Boogaart Mar 18 '10 at 13:47
2  
@asmin: It's a C thing. int, float etc are familiar keywords to C and C++ programmers, so Microsoft decided to use these aliases for consistency. – Mikey Cee Feb 3 '11 at 1:34
6  
@Mikey I'm pretty sure that Java decided to use these aliases for consistency, and Microsoft decided to use Java for consistency... :-) – MaxWell Aug 19 '11 at 14:07
feedback

I don't believe there is one.

bool is just an alias for System.Boolean.

link|improve this answer
feedback

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

link|improve this answer
feedback

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

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

link|improve this answer
feedback

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|improve this answer
feedback

One is an alias for the other.

link|improve this answer
feedback

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

link|improve this answer
So wouldn't bool be better for cross-platform compatibility? – Jess Mar 11 '09 at 4:11
feedback

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|improve this answer
5  
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
1  
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
1  
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
1  
mixing aliases and class names just adds nothing to code clarity. Pick one and stick with it, imho – Arne Claassen Sep 9 '09 at 22:07
feedback

Your Answer

 
or
required, but never shown

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