Method BitMaskToString
BitMaskToString(uint)
Converts a bitmask integer to a string representation of its binary expression, e.g. a mask value of 4 will return a string with the 3rd bit set: 00000000000000000000000000000100
Declaration
public static string BitMaskToString(uint mask)
Parameters
Type | Name | Description |
---|---|---|
uint | mask | The bitmask in integer format. |
Returns
Type | Description |
---|---|
string | A string that represents the bitmask. |