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

encode() public static method

public static encode ( bool self, ObjEncoder @out ) : void
self bool
@out Fanx.Serial.ObjEncoder
return void
        public static void encode(bool self, ObjEncoder @out)
        {
            @out.w(self ? "true" : "false");
        }