Edit

Share via


ReadOnlySpan2D<T>.Inequality Operator

Definition

Checks whether two ReadOnlySpan2D<T> instances are not equal.

public static bool operator != (Microsoft.Toolkit.HighPerformance.ReadOnlySpan2D<T> left, Microsoft.Toolkit.HighPerformance.ReadOnlySpan2D<T> right);
static member op_Inequality : Microsoft.Toolkit.HighPerformance.ReadOnlySpan2D<'T> * Microsoft.Toolkit.HighPerformance.ReadOnlySpan2D<'T> -> bool
Public Shared Operator != (left As ReadOnlySpan2D(Of T), right As ReadOnlySpan2D(Of T)) As Boolean

Parameters

left
ReadOnlySpan2D<T>

The first ReadOnlySpan2D<T> instance to compare.

right
ReadOnlySpan2D<T>

The second ReadOnlySpan2D<T> instance to compare.

Returns

Whether or not left and right are not equal.

Applies to