Пример #1
0
 public bool Equals(EpisTransitionPair other)
 {
     if (other != null)
     {
         return Right.Equals(other.Right) && Left.Equals(other.Left);
     }
     return false;
 }
Пример #2
0
 public bool Equals(EpisTransitionPair other)
 {
     if (other != null)
     {
         return(Right.Equals(other.Right) && Left.Equals(other.Left));
     }
     return(false);
 }