Esempio n. 1
0
 public bool IsTag(Book b, string tag)
 {
     return b.Genre == tag;
 }
Esempio n. 2
0
 public bool Equals(Book other)
 {
     return Author.Equals(other.Author) && Title.Equals(other.Title);
 }