[ the jinxbot project :: home | community forum | bn# | controls | mbncsutil | get the source ]
Inserts the specified Boolean value into the buffer.

Namespace:  MBNCSUtil
Assembly:  MBNCSUtil (in MBNCSUtil.dll) Version: 2.1.7.22 (2.1.7.22)

Syntax

C#
public void InsertBoolean(
	bool b
)
Visual Basic (Declaration)
Public Sub InsertBoolean ( _
	b As Boolean _
)
Visual C++
public:
void InsertBoolean(
	bool b
)

Parameters

b
Type: System..::.Boolean
The value to insert.

Remarks

This method inserts a 32-bit value of 1 or 0 based on the value of the parameter: 1 if the value is true, or otherwise 0.

See Also