ArraySegment<T>.Equality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether two ArraySegment<T> structures are equal.
public:
static bool operator ==(ArraySegment<T> a, ArraySegment<T> b);
public static bool operator == (ArraySegment<T> a, ArraySegment<T> b);
static member ( = ) : ArraySegment<'T> * ArraySegment<'T> -> bool
Public Shared Operator == (a As ArraySegment(Of T), b As ArraySegment(Of T)) As Boolean
Parameters
The structure on the left side of the equality operator.
The structure on the right side of the equality operator.
Returns
true
if a
is equal to b
; otherwise, false
.
Remarks
Two ArraySegment<T> objects are considered to be equal if all the following conditions are met:
They reference the same array.
They begin at the same index.
They have the same number of elements.
The equivalent method for this operator is ArraySegment<T>.Equals(ArraySegment<T>)
Applies to
.NET