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

and() public static method

public static and ( bool self, bool b ) : bool
self bool
b bool
return bool
        public static bool and(bool self, bool b)
        {
            return self & b;
        }