Fan.Sys.FanBool.and C# (CSharp) Méthode

and() public static méthode

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