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

toCode() public static method

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