Fan.Sys.Boolean.toString C# (CSharp) Method

toString() public static method

public static toString ( bool b ) : string
b bool
return string
        public static string toString(bool b)
        {
            return Boolean.valueOf(b).ToString();
        }