System.Flags.SetFlagsOn C# (CSharp) Méthode

SetFlagsOn() public static méthode

public static SetFlagsOn ( byte &b, int flags ) : void
b byte
flags int
Résultat void
        public static void SetFlagsOn(ref byte b, int flags)
        {
            b |= (byte)flags;
        }

Same methods

Flags::SetFlagsOn ( byte &b, byte flags ) : void