Esempio n. 1
0
 public override int GetHashCode()
 {
     return
         (DataScopeName.GetHashCode() ^
          CultureName.GetHashCode() ^
          TableName.GetHashCode());
 }
Esempio n. 2
0
 ////////////////////////////////////////////////////////////////////////
 //
 //  GetHashCode
 //
 //  Implements Object.GetHashCode().  Returns the hash code for the
 //  CultureInfo.  The hash code is guaranteed to be the same for CultureInfo A
 //  and B where A.Equals(B) is true.
 //
 ////////////////////////////////////////////////////////////////////////
 public override int GetHashCode()
 {
     return(CultureName.GetHashCode());
 }