OpenMetaverse.InventoryBase.GetHashCode C# (CSharp) Method

GetHashCode() public method

Generates a number corresponding to the value of the object to support the use of a hash table, suitable for use in hashing algorithms and data structures such as a hash table
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return UUID.GetHashCode() ^ ParentUUID.GetHashCode() ^ Name.GetHashCode() ^ OwnerID.GetHashCode();
        }