示例#1
0
 public Developer LivesIn(Countries country, int since)
 {
     Lives = new CountryYearStamp(country, since);
     return(this);
 }
示例#2
0
 public Developer BornIn(Countries country, int year)
 {
     Born = new CountryYearStamp(country, year);
     return(this);
 }