Vestris.ResourceLib.ResourceId.GetHashCode C# (CSharp) Method

GetHashCode() public method

Resource Id hash code. Resource Ids of the same type have the same hash code.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return IsIntResource()
                ? Id.ToInt32()
                : Name.GetHashCode();
        }