Catnap.Entity.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            if (!cachedHashCode.HasValue)
            {
                cachedHashCode = GetHashCode(this);
            }
            return cachedHashCode.Value;
        }

Same methods

Entity::GetHashCode ( Entity obj ) : int