Determins if the bit set in flag is set in mask.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static bool IsBitSet(
	int flag,
	int mask
)
Visual Basic (Declaration)
Public Shared Function IsBitSet ( _
	flag As Integer, _
	mask As Integer _
) As Boolean
Visual C++
public:
static bool IsBitSet(
	int flag, 
	int mask
)

Parameters

flag
Type: System..::.Int32
An int which contains the bit to be tested against mask.
mask
Type: System..::.Int32
An int which is to be used as teh mask.

Return Value

A bool whichis true if the bit set in flag is set in mask.

See Also