Matrix<T>.GetHashCode Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GetHashCode() Returns the hash code for this instance.
GetHashCode(IEqualityComparer) Returns a hash code for this instance.

GetHashCode

Returns the hash code for this instance.
C#
public override int GetHashCode()

Return Value

Int32
A 32-bit signed integer hash code.

GetHashCode(IEqualityComparer)

Returns a hash code for this instance.
C#
public int GetHashCode(
	IEqualityComparer comparer
)

Parameters

comparer  IEqualityComparer
The IEqualityComparer to use to generate hash codes.

Return Value

Int32
A hash code for this instance.

Implements

IStructuralEquatable.GetHashCode(IEqualityComparer)

See Also