Returns a value indicating whether two instances of Range are different.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared Operator <> ( _
	range1 As Range, _
	range2 As Range _
) As Boolean
C#
public static bool operator != (
	Range range1,
	Range range2
)
C++
public:
static bool operator != (
	Range range1, 
	Range range2
)

Parameters

range1 (Extreme.Mathematics.LinearAlgebra.Range)
A Range.
range2 (Extreme.Mathematics.LinearAlgebra.Range)
A Range.

Return Value

true if range1 and range2 specify different ranges; otherwise false.

Remarks

Two ranges are equal if they are both equal to All, or if their StartIndex, EndIndex, and Stride properties are the same.