상속: DefaultCapability, IIconContainer, IDescriptionContainer
예제 #1
0
 /// <inheritdoc/>
 protected bool Equals(IconCapability other)
 {
     if (other == null)
     {
         return(false);
     }
     return(base.Equals(other) && Descriptions.UnsequencedEquals(other.Descriptions) && Icons.UnsequencedEquals(other.Icons));
 }
예제 #2
0
 /// <inheritdoc/>
 protected IconCapabilityModel(IconCapability capability, bool used) : base(capability, used)
 {
     _iconCapability = capability;
 }
예제 #3
0
 /// <inheritdoc/>
 protected bool Equals(IconCapability other)
 {
     if (other == null) return false;
     return base.Equals(other) && Descriptions.SequencedEquals(other.Descriptions) && Icons.SequencedEquals(other.Icons);
 }