System.Flags.ToggleFlags C# (CSharp) Method

ToggleFlags() public static method

public static ToggleFlags ( byte &b, byte flags ) : void
b byte
flags byte
return void
        public static void ToggleFlags(ref byte b, byte flags)
        {
            b ^= flags;
        }

Same methods

Flags::ToggleFlags ( byte &b, int flags ) : void