ArraySegment<T>.Equality Operator

Definition

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

a
ArraySegment<T>

The structure on the left side of the equality operator.

b
ArraySegment<T>

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