 | HashCodeBuilderAppendManyT Method |
Appends the values in a collection field to the hash code calculation.
Namespace: Capgemini.CommonObjectUtilsAssembly: Capgemini.CommonObjectUtils (in Capgemini.CommonObjectUtils.dll) Version: 1.3.0.0
Syntaxpublic HashCodeBuilder AppendMany<T>(
ICollection<T> values
)
Public Function AppendMany(Of T) (
values As ICollection(Of T)
) As HashCodeBuilder
public:
generic<typename T>
HashCodeBuilder^ AppendMany(
ICollection<T>^ values
)
member AppendMany :
values : ICollection<'T> -> HashCodeBuilder
Parameters
- values
- Type: System.Collections.GenericICollectionT
The collection field
Type Parameters
- T
- The type of objects held in the collection field.
Return Value
Type:
HashCodeBuilderThe HashCodeBuilder for chaining calls.
See Also