Esempio n. 1
0
 public bool KeyEquals(TSCEvents a)
 {
     if ((object)a == null)
     {
         return(false);
     }
     return(
         (a.EventKey.Trim().ToLower() == EventKey.Trim().ToLower())
         );
 }
Esempio n. 2
0
 public bool KeyEquals(TSCQueue a)
 {
     if ((object)a == null)
     {
         return(false);
     }
     return(
         (a.EventKey.Trim().ToLower() == EventKey.Trim().ToLower()) &&
         (a.QueueRound == QueueRound) &&
         (a.SingerKey.Trim().ToLower() == SingerKey.Trim().ToLower())
         );
 }