GetHashCode() public method

public GetHashCode ( ) : int
return int
 public override int GetHashCode()
 {
     unchecked
     {
         var hash = 17;
         hash = hash * 23 + _qualifiedModuleName.GetHashCode();
         hash = hash * 23 + _memberName.GetHashCode();
         return(hash);
     }
 }
Esempio n. 2
0
 public override int GetHashCode()
 {
     // note: fingers crossed here
     return((_qualifiedModuleName.GetHashCode() + _qualifiedModuleName.ToString() + _memberName).GetHashCode());
 }
Esempio n. 3
0
 public override int GetHashCode()
 {
     return(HashCode.Compute(_qualifiedName.GetHashCode(), _selection.GetHashCode()));
 }