コード例 #1
0
 int IEqualityComparer <T[]> .GetHashCode(T[] obj)
 {
     return(HashCodeOperations.Combine(obj));
 }
コード例 #2
0
 int IEqualityComparer <IEnumerable <T> > .GetHashCode(IEnumerable <T> obj)
 {
     return(HashCodeOperations.Combine(obj));
 }
コード例 #3
0
 public override int GetHashCode()
 {
     return(HashCodeOperations.Combine(typeof(Wrap <T>), this.Value));
 }
コード例 #4
0
 int IEqualityComparer <ICollection <T> > .GetHashCode(ICollection <T> obj)
 {
     return(HashCodeOperations.Combine(obj));
 }
コード例 #5
0
ファイル: Connection.cs プロジェクト: SmaSTra/SmaSTra
 public override int GetHashCode()
 {
     return(HashCodeOperations.Combine(this.InputNode, this.OutputNode, this.InputIndex));
 }