Crosschat.PrimitiveTypeExtensions.ToBoolean C# (CSharp) Method

ToBoolean() public static method

public static ToBoolean ( this obj ) : bool
obj this
return bool
        public static bool ToBoolean(this object obj)
        {
            if (obj is bool)
                return (bool) obj;
            return false;
        }
    }
PrimitiveTypeExtensions