public virtual bool Equals(IUnicodeTargetCategory other)
 {
     if (other is IUnicodeTargetPartialCategory)
     {
         return(false);
     }
     return(EqualsInternal(other));
 }
 public override bool Equals(IUnicodeTargetCategory other)
 {
     if (other is IUnicodeTargetPartialCategory)
     {
         return(this.Equals((IUnicodeTargetPartialCategory)other));
     }
     return(false);
 }
 protected bool EqualsInternal(IUnicodeTargetCategory other)
 {
     return(this.TargetedCategory == other.TargetedCategory);
 }