BigFloat.Inequality Operator

Returns whether a BigFloat is not equal to another.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static bool operator !=(
	BigFloat? left,
	BigFloat? right
)

Parameters

left  BigFloat
The first number to compare.
right  BigFloat
The second number to compare.

Return Value

Boolean
true if left is not equal to right; otherwise false.

Implements

IEqualityOperators<TSelf, TOther, TResult>.Inequality(TSelf, TOther)

See Also