August 2003
Intermediate to advanced
928 pages
32h 1m
English
Boolean
This is a simple value type that
contains either
true or false. When converting
to or from a string or comparing with a string, the
TrueString and FalseString
fields are used (these return True and
False). This type is available in C# through the
bool alias.
public struct Boolean : IComparable, IConvertible { // Public Static Fields public static readonly string FalseString; // =False public static readonly string TrueString; // =True // Public Static Methods public static bool Parse(stringvalue); // Public Instance Methods public int CompareTo(objectobj); // implements IComparable public override bool Equals(objectobj); // overrides ValueType public override int GetHashCode( ); // overrides ValueType public TypeCode GetTypeCode( ); // implements IConvertible public override string ToString( ); // overrides ValueType public string ToString(IFormatProviderprovider); // implements IConvertible }
Object
→
ValueType
→
Boolean(IComparable, IConvertible)
Multiple types
Multiple types