Fan.Sys.FanBool.toStr C# (CSharp) Method

toStr() public static method

public static toStr ( bool self ) : string
self bool
return string
        public static string toStr(bool self)
        {
            return self ? "true" : "false";
        }