コード例 #1
0
ファイル: Article.cs プロジェクト: KarinaVasilkova/C-
 protected bool Equals(Article other)
 {
     return(Equals(PersonInformation, other.PersonInformation) && string.Equals(ArticleName, other.ArticleName) && ArticleRage.Equals(other.ArticleRage));
 }