System.Flags.SetFlagsOn C# (CSharp) Method

SetFlagsOn() public static method

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

Same methods

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