Gnip.Client.Resource.Rules.GetHashCode C# (CSharp) Method

GetHashCode() public method

The GetHashCode method is suitable for use in hashing algorithms and data structures such as a hash table.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int result = (this.Items != null ? this.Items.GetHashCode() : 0);
            return result;
        }