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