Returns a value indicating whether two instances
of
Range are equal.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator ==(
Range range1,
Range range2
)
Public Shared Operator = (
range1 As Range,
range2 As Range
) As Boolean
public:
static bool operator ==(
Range range1,
Range range2
)
static let inline (=)
range1 : Range *
range2 : Range : bool
Parameters
- range1
- Type: Extreme.MathematicsRange
A Range. - range2
- Type: Extreme.MathematicsRange
A Range.
Return Value
Type:
Boolean if
range1 and
range2 specify the same range;
otherwise
.
Two ranges are equal if they are both equal to
All, or if their StartIndex,
EndIndex, and Stride properties
are the same.
Reference