Beispiel #1
0
        static void Main(string[] args)
        {
            TallGuy tallGuy = new TallGuy()
            {
                Height = 74, Name = "Adam"
            };

            tallGuy.TalkAboutYourself();
            tallGuy.Honk();
        }
Beispiel #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     TallGuy tallGuy = new TallGuy() { Height = 74, Name = "Jimmy" };
     tallGuy.TalkAboutYourself();
     tallGuy.Honk();
 }