// // System.Boolean.cs // // Author: // Derek Holden (dholden@draper.com) // // (C) Ximian, Inc. http://www.ximian.com // // // Copyright (C) 2004 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // // Testing SVN // // I guess this is the Boolean class. This was written word for word // off the Library specification for System.Boolean in the ECMA // TC39 TG2 and TG3 working documents. // // The XML style documentation isn't that elegant, but it seems to // be the standard way according to the poorly documented C# // Programmer's Reference section on XML Documentation. // using System.Globalization; using System.Runtime.InteropServices; namespace System { /// /// Represents the boolean values of logical true and false. /// [Serializable] [ComVisible (true)] public struct Boolean : IComparable, IConvertible, IComparable , IEquatable { /// /// The String representation of Boolean False /// public static readonly string FalseString = "False"; /// /// The String representation of Boolean True /// public static readonly string TrueString = "True"; internal bool m_value; /// /// Compares the current Boolean instance against another object. /// /// /// Throws an ArgumentException if obj isn't null or /// a Boolean. /// /// /// The object to compare against /// /// /// An int reflecting the sort order of this instance as /// compared to obj /// -1 if this instance is false and obj is true /// 0 if this instance is equal to obj /// 1 if this instance is true and obj is false, /// or obj is null /// public int CompareTo (object obj) { if (obj == null) return 1; if (!(obj is System.Boolean)) throw new ArgumentException (Locale.GetText ( "Object is not a Boolean.")); bool value = (bool) obj; // for case #3 if (m_value && !value) return 1; // for case #2, else it's #1 return (m_value == value) ? 0 : -1; } /// /// Determines whether this instance and another object represent the /// same type and value. /// /// /// The object to check against /// /// /// true if this instnace and obj are same value, /// otherwise false if it is not or null /// public override bool Equals (Object obj) { if (obj == null || !(obj is System.Boolean)) return false; bool value = (bool) obj; return m_value ? value : !value; } public int CompareTo (bool value) { if (m_value == value) return 0; return !m_value ? -1 : 1; } public bool Equals (bool obj) { return m_value == obj; } /// /// Generates a hashcode for this object. /// /// /// An Int32 value holding the hash code /// public override int GetHashCode () { // Guess there's not too many ways to hash a Boolean return m_value ? 1 : 0; } /// /// Returns a given string as a boolean value. The string must be /// equivalent to either TrueString or FalseString, with leading and/or /// trailing spaces, and is parsed case-insensitively. /// /// /// Throws an ArgumentNullException if val is null, or a /// FormatException if val doesn't match TrueString /// or FalseString /// /// /// The string value to parse /// /// /// true if val is equivalent to TrueString, /// otherwise false /// public static bool Parse (string value) { if (value == null) throw new ArgumentNullException ("value"); value = value.Trim (); if (string.CompareOrdinalCaseInsensitiveUnchecked (value, TrueString) == 0) return true; if (string.CompareOrdinalCaseInsensitiveUnchecked (value, FalseString) == 0) return false; throw new FormatException (Locale.GetText ( "Value is not equivalent to either TrueString or FalseString.")); } public static bool TryParse (string value, out bool result) { result = false; if (value == null) return false; value = value.Trim (); if (string.CompareOrdinalCaseInsensitiveUnchecked (value, TrueString) == 0) { result = true; return true; } if (string.CompareOrdinalCaseInsensitiveUnchecked (value, FalseString) == 0) { // result = false; // already set at false by default return true; } return false; } /// /// Returns a string representation of this Boolean object. /// /// /// FalseString if the instance value is false, otherwise /// TrueString /// public override string ToString () { return m_value ? TrueString : FalseString; } // =========== IConvertible Methods =========== // public TypeCode GetTypeCode () { return TypeCode.Boolean; } object IConvertible.ToType (Type targetType, IFormatProvider provider) { if (targetType == null) throw new ArgumentNullException ("targetType"); return System.Convert.ToType (m_value, targetType, provider, false); } bool IConvertible.ToBoolean (IFormatProvider provider) { return m_value; } byte IConvertible.ToByte (IFormatProvider provider) { return System.Convert.ToByte (m_value); } char IConvertible.ToChar (IFormatProvider provider) { throw new InvalidCastException (); } DateTime IConvertible.ToDateTime (IFormatProvider provider) { throw new InvalidCastException (); } decimal IConvertible.ToDecimal (IFormatProvider provider) { return System.Convert.ToDecimal (m_value); } double IConvertible.ToDouble (IFormatProvider provider) { return System.Convert.ToDouble (m_value); } short IConvertible.ToInt16 (IFormatProvider provider) { return System.Convert.ToInt16 (m_value); } int IConvertible.ToInt32 (IFormatProvider provider) { return System.Convert.ToInt32 (m_value); } long IConvertible.ToInt64 (IFormatProvider provider) { return System.Convert.ToInt64 (m_value); } sbyte IConvertible.ToSByte (IFormatProvider provider) { return System.Convert.ToSByte (m_value); } float IConvertible.ToSingle (IFormatProvider provider) { return System.Convert.ToSingle (m_value); } public string ToString (IFormatProvider provider) { return ToString (); } ushort IConvertible.ToUInt16 (IFormatProvider provider) { return System.Convert.ToUInt16 (m_value); } uint IConvertible.ToUInt32 (IFormatProvider provider) { return System.Convert.ToUInt32 (m_value); } ulong IConvertible.ToUInt64 (IFormatProvider provider) { return System.Convert.ToUInt64 (m_value); } } }