The bool Type : boolean Data Type « Data Type « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
C# / CSharp Tutorial » Data Type » boolean Data Type 
2. 2. 1. The bool Type
  1. The bool type represents true/false values.
  2. C# defines the values true and false using the reserved words 'true' and 'false'.
  3. A variable or expression of type bool will be one of these two values.
  4. There is no conversion defined between bool and integer values.

The Boolean structure supports the bool data type.:


      public static readonly string FalseString
      public static readonly string TrueString

  

These contain the human-readable forms of true and false.

Boolean implements the following interfaces:

  1. IComparable and
  2. IConvertible.

Methods Defined by Boolean

MethodMeaning
public int CompareTo(object v)Returns zero if the values are equal. Returns a negative value if the invoking object is false and v is true. Returns a positive value if the invoking object is true and v is false.
public override bool Equals(object v)Returns true if the value of the invoking object equals the value of v.
public override int GetHashCode()Returns the hash code.
public TypeCode GetTypeCode()Returns the TypeCode enumeration value for Boolean, which is TypeCode.Boolean.
public static bool Parse(string str)Parses the string. If the string is neither "True" nor "False", an exception is thrown. However, case differences are ignored.
public override string ToString()Convert to string.
string ToString(IFormatProvider fmtpvdr)Convert to string using the culture-specific information specified in fmtpvdr.


2. 2. boolean Data Type
2. 2. 1. The bool Type
2. 2. 2. Output a boolean variable with Console.WriteLine
2. 2. 3. bool values in if statement
2. 2. 4. if statement with bool variable
w___w__w__.___j_a__v__a___2___s__.__c__o_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.