Exemplo n.º 1
0
 public override int GetHashCode()
 {
     return(_keyInput.GetHashCode() ^ _keyModifiers.GetHashCode());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a unique hash code for the instance
 /// </summary>
 /// <returns></returns>
 public override int GetHashCode() => Key.ToUpper().GetHashCode() * 17 + Modifiers.GetHashCode();