Gnip.Client.Resource.Activities.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

The GetHashCode method is suitable for use in hashing algorithms and data structures such as a hash table.
public GetHashCode ( ) : int
리턴 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;
        }