Exemplo n.º 1
0
 public Person(string name)
 {
     this.name = name;
     this.car = null;
     this.pokemons = new List<Pokemon>();
     this.parents = new List<Parent>();
     this.children = new List<Child>();
 }
Exemplo n.º 2
0
 // Sets Car or overrides it!
 public void SetCar(string model, string speed)
 {
     this.Car = new Car(model, speed);
 }
Exemplo n.º 3
0
 public Person(string name)
 {
     // === Single
     this.Name = name;
     this.Company = null;
     this.Car = null;
     // === Multiple
     this.Parents = new List<Parent>();
     this.Pokemons = new List<Pokemon>();
     this.Children = new List<Child>();
 }