Array2D<T>.Equality Operator

Checks whether two 2D arrays are equal.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static bool operator ==(
	Array2D<T> left,
	Array2D<T> right
)

Parameters

left  Array2D<T>
A 2D array.
right  Array2D<T>
A 2D array.

Return Value

Boolean
true if left is equal to right; otherwise false.

See Also