GetHashCode()
Returns the hash code for the object.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public override int GetHashCode()
Returns
Type | Description |
|---|---|
| int | The hash code for the object. |
Remarks
The hash code is stable for the object and doesn't change if you modify the object's fields, so you can safely use an object as a key in a hash-based collection such as a or . The hash code is consistent with Equals: two references that are equal return the same hash code.
DictionaryHashSet