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

or() public static method

public static or ( bool self, bool b ) : bool
self bool
b bool
return bool
        public static bool or(bool self, bool b)
        {
            return self | b;
        }