 | EqualsBuilderAppendT Method (T, T) |
Appends two objects that implement the IEquatable interface to the list of values to compare.
Namespace: Capgemini.CommonObjectUtilsAssembly: Capgemini.CommonObjectUtils (in Capgemini.CommonObjectUtils.dll) Version: 1.3.0.0
Syntaxpublic EqualsBuilder Append<T>(
T left,
T right
)
where T : Object, IEquatable<T>
Public Function Append(Of T As {Object, IEquatable(Of T)}) (
left As T,
right As T
) As EqualsBuilder
public:
generic<typename T>
where T : Object, IEquatable<T>
EqualsBuilder^ Append(
T left,
T right
)
member Append :
left : 'T *
right : 'T -> EqualsBuilder when 'T : Object and 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:
EqualsBuilderThe EqualsBuilder for chaining calls.
Remarks
See Also