Beispiel #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            TallGuy tallguy = new TallGuy()
            {
                Height = 74, Name = "Jimmy"
            };

            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();
 }