Exemple #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         return((FirstLetter.GetHashCode() * 397) ^ SecondLetter.GetHashCode());
     }
 }
Exemple #2
0
 private bool Equals(ColumnLetter other)
 {
     return(FirstLetter.Equals(other.FirstLetter) && SecondLetter.Equals(other.SecondLetter));
 }