Fan.Sys.Boolean.toString C# (CSharp) Méthode

toString() public static méthode

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