Click or drag to resize

NMathFunctionsOr Method

Returns the logical OR of two boolean values.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static bool Or(
	bool b1,
	bool b2
)

Parameters

b1  Boolean
A boolean value.
b2  Boolean
A boolean value.

Return Value

Boolean
Returns b1 || b2.
See Also