Inheritance: IconCapability
Exemplo n.º 1
0
        //--------------------//

        #region Equality
        /// <inheritdoc/>
        protected bool Equals(VerbCapability other)
        {
            if (other == null)
            {
                return(false);
            }
            return(base.Equals(other) && Verbs.SequencedEquals(other.Verbs));
        }
Exemplo n.º 2
0
 /// <inheritdoc/>
 protected bool Equals(VerbCapability other)
 {
     if (other == null) return false;
     return base.Equals(other) && Verbs.UnsequencedEquals(other.Verbs);
 }