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

Home
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.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
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
2.2.5.Declare 3 bools on a single line
2.2.6.Using ToString() to Convert to a string
2.2.7.Generic and nongeneric versions of the CompareTo method for Boolean type
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.