Determins if the bit set in flag is set in
mask.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static bool IsBitSet(
int flag,
int mask
)
Public Shared Function IsBitSet (
flag As Integer,
mask As Integer
) As Boolean
public:
static bool IsBitSet(
int flag,
int mask
)
static member IsBitSet :
flag : int *
mask : int -> bool
Parameters
- flag
- Type: SystemInt32
An int which contains the bit to be tested against mask.
- mask
- Type: SystemInt32
An int which is to be used as teh mask.
Return Value
Type:
Boolean
A
bool whichis
true if the bit set in
flag is set in
mask.
See Also