Click or drag to resize
EqualsBuilderAppendT Method (T, T, IEqualityComparerT)
Appends two objects to the list of values to compare and compares them using a supplied comparer.

Namespace: Capgemini.CommonObjectUtils
Assembly: Capgemini.CommonObjectUtils (in Capgemini.CommonObjectUtils.dll) Version: 1.3.0.0
Syntax
public EqualsBuilder Append<T>(
	T left,
	T right,
	IEqualityComparer<T> comparer
)

Parameters

left
Type: T
The left hand object.
right
Type: T
The right hand object.
comparer
Type: System.Collections.GenericIEqualityComparerT
An implementation of the IEqualityComparer interface that can compare the objects.

Type Parameters

T
The type of the objects.

Return Value

Type: EqualsBuilder
The EqualsBuilder for chaining calls.
Remarks
See Also