Inequality operator. Tests for inequality of two intervals.

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

Syntax

C#
public static bool operator !=(
	Interval a,
	Interval b
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	a As Interval, _
	b As Interval _
) As Boolean
Visual C++
public:
static bool operator !=(
	Interval^ a, 
	Interval^ b
)

Parameters

a
Type: CenterSpace.NMath.Core..::.Interval
An interval.
b
Type: CenterSpace.NMath.Core..::.Interval
An interval.

Return Value

True if the intervals are of differnt types, or have different endpoints; otherwise, false.

See Also