예제 #1
0
 public bool CheckBirth(string year)
 {
     if (Birthdate.EndsWith(year))
     {
         return(true);
     }
     return(false);
 }
예제 #2
0
 public bool Check(string part)
 {
     return(Birthdate.EndsWith(part));
 }