 | HashCodeBuilderAppend Method (Object) |
Appends the field to the hash code calculation.
Namespace: Capgemini.CommonObjectUtilsAssembly: Capgemini.CommonObjectUtils (in Capgemini.CommonObjectUtils.dll) Version: 1.3.0.0
Syntaxpublic HashCodeBuilder Append(
Object value
)
Public Function Append (
value As Object
) As HashCodeBuilder
public:
HashCodeBuilder^ Append(
Object^ value
)
member Append :
value : Object -> HashCodeBuilder
Parameters
- value
- Type: SystemObject
The field to append.
Return Value
Type:
HashCodeBuilderThe HashCodeBuilder for chaining calls.
Remarks
Don't pass arrays, lists or other collections to this method as the top level objects will be hashed rather than
the contents. Instead call
AppendT(ICollectionT).
See Also