Boolean

Boolean CF 1.0, ECMA 1.0, serializable

System (mscorlib.dll) struct

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  (string   value   );  // Public Instance Methods  public int  CompareTo  (object   obj   );  // implements IComparable  public override bool  Equals  (object   obj   );  // overrides ValueType  public override int  GetHashCode  ( );  // overrides ValueType  public TypeCode  GetTypeCode  ( );  // implements IConvertible  public override string  ToString  ( );  // overrides ValueType  public string  ToString  (IFormatProvider   provider   );  // implements IConvertible  } 

Hierarchy

Object ValueType Boolean(IComparable, IConvertible)

Returned By

Multiple types

Passed To

Multiple types



C# in a Nutshell
C # in a Nutshell, Second Edition
ISBN: 0596005261
EAN: 2147483647
Year: 2005
Pages: 963

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net