Click or drag to resize
EqualsBuilderAppendT Method (T, T)
Appends two objects that implement the IEquatable interface to the list of values to compare.

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

Parameters

left
Type: T
The left hand object.
right
Type: T
The right hand object.

Type Parameters

T
The type of the objects.

Return Value

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