CapyKit/Documentation/Help/M_CapyKit_PropertyComparer_2_GetHashCode.md
Jordan Wages 735d7c4c91 Documentation + Unfinished SecurityHelper
Committing the unfinished changes to the SecurityHelper as I flesh it out during the migration. Also starting a documentation folder powered by Sandcastle.
2024-04-19 23:12:24 -05:00

1.7 KiB

GetHashCode(T) Method

Returns a hash code for the specified object.

Definition

Namespace: CapyKit
Assembly: CapyKit (in CapyKit.dll) Version: 1.0.0+6cdd805be49c3b769a116584ea6904955ecd820d

C#

public int GetHashCode(
	T obj
)

VB

Public Function GetHashCode ( 
	obj As T
) As Integer

C++

public:
virtual int GetHashCode(
	T obj
) sealed

F#

abstract GetHashCode : 
        obj : 'T -> int 
override GetHashCode : 
        obj : 'T -> int 

Parameters

  T
The Object for which a hash code is to be returned.

Return Value

Int32
A hash code for the specified object.

Implements

IEqualityComparer(T).GetHashCode(T)

Exceptions

ArgumentNullException The type of obj is a reference type and obj is null.

See Also

Reference

PropertyComparer(T, U) Class
GetHashCode Overload
CapyKit Namespace