Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

intThe 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
Dictionary
or
HashSet
. The hash code is consistent with Equals: two references that are equal return the same hash code.