Bitmask.Inequality
Operator in Bitmask
Declaration
public static bool operator !=(Bitmask lhs, Bitmask rhs)Description
Determines if two bitmasks are not equal.
Parameters
| lhs | The first bitmask to compare. |
| rhs | The second bitmask to compare. |
Returns
| bool | True if the bitmasks are not equal, false otherwise. |
Overload
Declaration
public static bool operator !=(Bitmask lhs, int rhs)Description
Determines if two bitmasks are not equal.
Parameters
| lhs | The first bitmask to compare. |
| rhs | The second bitmask to compare. |
Returns
| bool | True if the bitmasks are not equal, false otherwise. |
Overload
Declaration
public static bool operator !=(int lhs, Bitmask rhs)Description
Determines if two bitmasks are not equal.
Parameters
| lhs | The first bitmask to compare. |
| rhs | The second bitmask to compare. |
Returns
| bool | True if the bitmasks are not equal, false otherwise. |