Click or drag to resize
EqualsBuilderAppendT Method (T, T, FuncT, T, Boolean)
Appends two objects to the list values to compare and compares them using a supplied comparison function.

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

Parameters

left
Type: T
The left hand object.
right
Type: T
The right hand object.
equalityFunc
Type: SystemFuncT, T, Boolean
The equality comparison function.

Type Parameters

T
The type of the objects.

Return Value

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