/// <inheritdoc/>
 protected bool Equals(ExecutableInBinding other)
 {
     if (other == null)
     {
         return(false);
     }
     return(base.Equals(other) && Command == other.Command);
 }
Пример #2
0
 /// <inheritdoc/>
 protected bool Equals(ExecutableInBinding other)
 {
     if (other == null) return false;
     return base.Equals(other) && Command == other.Command;
 }