Checks whether two 2D arrays are not equal.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator !=(
Array2D<T> left,
Array2D<T> right
)
Public Shared Operator <> (
left As Array2D(Of T),
right As Array2D(Of T)
) As Boolean
public:
static bool operator !=(
Array2D<T> left,
Array2D<T> right
)
static let inline (<>)
left : Array2D<'T> *
right : Array2D<'T> : bool
Parameters
- left
- Type: Extreme.CollectionsArray2DT
A 2D array. - right
- Type: Extreme.CollectionsArray2DT
A 2D array.
Return Value
Type:
Boolean if
left is not equal to
right; otherwise
.
Reference