예제 #1
0
 public int GetHash()
 {
     unchecked
     {
         var result = _streamDeckButtonName.GetHashCode();
         result = (result * 397) ^ NavigationType.GetHashCode();
         return(result);
     }
 }
예제 #2
0
 public new int GetHash()
 {
     unchecked
     {
         var result = _streamDeckButtonName.GetHashCode();
         result = (result * 397) ^ base.GetHash();
         return(result);
     }
 }
예제 #3
0
 public new int GetHash()
 {
     unchecked
     {
         var result = OSCommandObject.GetHash();
         result = (result * 397) ^ _streamDeckButtonName.GetHashCode();
         return(result);
     }
 }
예제 #4
0
 public int GetHash()
 {
     unchecked
     {
         var result = _streamDeckButtonName.GetHashCode();
         foreach (var dcsbiosInput in DCSBIOSInputs)
         {
             result = (result * 397) ^ dcsbiosInput.GetHashCode();
         }
         return(result);
     }
 }