AlbLib.SaveGame.ItemStack.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

Computes unique hash code for this item stack.
public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            return (Count|(Charges<<8)|(NumRecharged<<16)|((byte)Flags<<32))^Type<<16;
        }