Click or drag to resize
EqualsBuilderAppendManyT Method (IEnumerableT, IEnumerableT)
Appends two enumerable objects that contain the same (IEquatable) type 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 AppendMany<T>(
	IEnumerable<T> left,
	IEnumerable<T> right
)
where T : Object, IEquatable<T>

Parameters

left
Type: System.Collections.GenericIEnumerableT
The left hand enumerable.
right
Type: System.Collections.GenericIEnumerableT
The right hand enumerable.

Type Parameters

T
The type the enumerable objects contain.

Return Value

Type: EqualsBuilder
The EqualsBuilder for chaining calls.
Remarks
EqualsBuilder will perform a deep comparison of the two enumerable objects. Each element pair in the enumerations is compared by calling the Equals method of the IEquatable interface.
See Also