Returns the logical negation of a boolean value.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static bool Not(
	bool b
)
Visual Basic (Declaration)
Public Shared Function Not ( _
	b As Boolean _
) As Boolean
Visual C++
public:
static bool Not(
	bool b
)

Parameters

b
Type: System..::.Boolean
A boolean value.

Return Value

Returns !b.

See Also