Пример #1
0
 public bool Equals(RootCommandNode <TSource> other)
 {
     if (other is null)
     {
         return(false);
     }
     return(ReferenceEquals(this, other) || EqualsInternal(other));
 }
Пример #2
0
 public bool Equals(RootCommandNode <TSource> other)
 {
     return(true);
 }
Пример #3
0
 private bool EqualsInternal(RootCommandNode <TSource> other) => base.Equals(other);