コード例 #1
0
ファイル: EventExample.cs プロジェクト: flwotkbd/CsProject
        static void Main(string[] args)
        {
            Ball ball = new Ball();
            Pitcher pitcher = new Pitcher(ball);

            BallEventArgs ballEventArgs = new BallEventArgs(59, 94);

            ball.OnBallInPlay(ballEventArgs);
        }
コード例 #2
0
ファイル: DelegateExam.cs プロジェクト: flwotkbd/CsProject
        static void Main(string[] args)
        {
            Console.WriteLine("Hello world!");

            Ball ball = new Ball();

            Pitcher pitcher = new Pitcher(ball);

            ball.playBall_Click();
        }