public class Auto : GLib.Object { public string farbe { get; set; } public Auto(string f) { Object(farbe: f); } ~Auto() {print("verschrottet");} public void lackieren(string f) { this.farbe = f; } construct { print("Willkommen"); } }