Smartsheet.Api.Models.IdentifiableModel.GetHashCode C# (CSharp) Method

GetHashCode() public method

Return the hash Code of this object.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int result = 17;
            if (this.id == null)
            {
                    result = base.GetHashCode();
            }
            else
            {
                result = 31 * result + (int)((long)this.id ^ ((int)((long)(uint)this.id >> 32)));
            }

            return result;
        }
IdentifiableModel