Gnip.Client.Resource.Activities.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.Publisher != null ? this.Publisher.GetHashCode() : 0);
            result = 31 * result + (this.Items != null ? this.Items.GetHashCode() : 0);
            return result;
        }