public override bool Equals(object obj) { if (this == obj) { return(true); } if (this.GetType() != obj.GetType()) { return(false); } KeywordAttribute other = (KeywordAttribute)obj; return(keyword == other.keyword); }
public override void CopyTo(Attribute target) { KeywordAttribute attr = (KeywordAttribute)target; attr.Keyword = keyword; }