コード例 #1
0
ファイル: TPage.cs プロジェクト: bollylu/eLibMan
 public bool IsIdentical(TPage otherPage)
 {
     if (otherPage == null)
     {
         return(false);
     }
     if (Name != otherPage.Name)
     {
         return(false);
     }
     return(true);
 }
コード例 #2
0
ファイル: TPage.cs プロジェクト: bollylu/eLibMan
 public TPage(TPage page)
 {
     Name    = page.Name;
     Quality = page.Quality;
 }