public Persoon (string Naam, int Leeftijd, int Gewicht) {
this.Leeftijd = Leeftijd;
public Persoon():this("onbekend", 0, 0){}
public string Display() {
return Naam + " is " + Leeftijd + " en weegt " + Gewicht + "kg";
public static void Main()
Persoon hans = new Persoon ("Hans", 93, 87);
Console.WriteLine(hans.Display());
Console.WriteLine(hans.Display());