Click or drag to resize

TupleEqualityComparer<T1, T2, T3> Constructor

Constructor.

Namespace:  WhetStone.Comparison
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public TupleEqualityComparer(
	IEqualityComparer<T1> c1 = null,
	IEqualityComparer<T2> c2 = null,
	IEqualityComparer<T3> c3 = null
)

Parameters

c1 (Optional)
Type: System.Collections.Generic.IEqualityComparer<T1>
The comparer between the first elements. null for default.
c2 (Optional)
Type: System.Collections.Generic.IEqualityComparer<T2>
The comparer between the second elements. null for default.
c3 (Optional)
Type: System.Collections.Generic.IEqualityComparer<T3>
The comparer between the third elements. null for default.
See Also