Ejemplo n.º 1
0
        //--------------------//

        #region Equality
        /// <inheritdoc/>
        protected bool Equals(CommandAccessPoint other)
        {
            if (other == null)
            {
                return(false);
            }
            return(base.Equals(other) && other.Name == Name && other.Command == Command);
        }
Ejemplo n.º 2
0
 /// <inheritdoc/>
 protected bool Equals(CommandAccessPoint other)
 {
     if (other == null) return false;
     return base.Equals(other) && other.Name == Name && other.Command == Command;
 }