HelloWorld.Item.GetHashCode C# (CSharp) Method

GetHashCode() public method

重写 GetHashCode 方法,获取哈希值
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return unchecked(Identifier.GetHashCode() + Quantity);
        }