bool or Boolean?

  • Thread starter Thread starter soosan
  • Start date Start date
S

soosan

hi
what is the difference between bool and Boolean in c#. when i declare a
variable using either it works! what is the difference?
 
soosan said:
hi
what is the difference between bool and Boolean in c#. when i declare a
variable using either it works! what is the difference?


There isn't one. bool is a c# alias for System.Boolean.
 
Back
Top