Example #1
0
 public Person(City homeCity)
 {
     Console.WriteLine("Name your new villager!");
     this.name     = Console.ReadLine();
     this.homeCity = homeCity;
 }
Example #2
0
 public Person(String name, City homeCity)
 {
     this.name     = name;
     this.homeCity = homeCity;
 }