コード例 #1
0
ファイル: Form1.cs プロジェクト: michaelcoca/Solution-ch7-ex2
        private void button1_Click(object sender, EventArgs e)
        {
            TallGuy tallGuy = new TallGuy()
            {
                Height = 74, Name = "Jimmy"
            };

            tallGuy.TalkAboutYourself();
            tallGuy.Honk();
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: michaelcoca/Solution-ch7-ex2
 private void button1_Click(object sender, EventArgs e)
 {
     TallGuy tallGuy = new TallGuy() { Height = 74, Name = "Jimmy" };
     tallGuy.TalkAboutYourself();
     tallGuy.Honk();
 }