Ejemplo n.º 1
0
 public void setMonths(Chicken chicken, int monthsOld)
 {
     chicken.monthsOld = monthsOld;
 }
Ejemplo n.º 2
0
 int getMonths(Chicken chicken)
 {
     return(chicken.monthsOld);
 }
Ejemplo n.º 3
0
 public void setName(Chicken chicken, string name)
 {
     chicken.name = name;
 }
Ejemplo n.º 4
0
 string getName(Chicken chicken)
 {
     return(chicken.name);
 }