Esempio n. 1
0
 public bool Match(Cat cat)
 {
     return(cat.GetFullName() == null);
 }
Esempio n. 2
0
 public bool Match(Cat cat)
 {
     return(cat._firstName.StartsWith("A"));
 }
Esempio n. 3
0
 public bool Match(Cat cat)
 {
     return(cat.GetFirstName() == "Occam" &&
            cat.GetAge() == 1);
 }
Esempio n. 4
0
 public bool Match(Cat cat)
 {
     return(cat.GetFullName() == "Achat Leo Lenis");
 }
Esempio n. 5
0
 public bool Match(Cat cat)
 {
     return(cat._age + 1 == 2);
 }
Esempio n. 6
0
 public bool Match(Cat cat)
 {
     return((cat._father._father != null && cat._father._father._firstName == "Edwin") ||
            cat._father._firstName == "Edwin");
 }
Esempio n. 7
0
 public bool Match(Cat cat)
 {
     return(cat._father._father._firstName == "Edwin");
 }
Esempio n. 8
0
 public bool Match(Cat cat)
 {
     return(cat._father._age == 1);
 }
Esempio n. 9
0
 public bool Match(Cat cat)
 {
     return(cat._age == 7);
 }