예제 #1
0
    static void Main(string[] args)
    {//System.Console.WriteLine("Welcome to the Main method of the Fibonacci program.");
        RicochetBall ricochetBallApp = new RicochetBall();

        Application.Run(ricochetBallApp);
        System.Console.WriteLine("Main method will now shutdown.");
    } //End of Main
예제 #2
0
    public static void Main()
    {
        System.Console.WriteLine("Assigment 4(Ricochet Ball) has begun.");
        RicochetBall rb = new RicochetBall();

        Application.Run(rb);
        System.Console.WriteLine("Assignmet 4(Ricochet Ball) has ended.");
    }