Example #1
0
        static void Main(string[] args)
        {
            Tester t = new Tester();

            t.Method1();

            Console.ReadLine();
        }
        static void Main(string[] args)
        {
            //Console.WriteLine("First line in a program");
            //var x = 0;
            //var y = 12 / x;
            //Console.WriteLine("After the division");

            Tester t = new Tester();
            t.Method1();

            Console.ReadLine();
        }
Example #3
0
        static void Main(string[] args)
        {
            Tester t = new Tester();

            t.Method1();
        }
Example #4
0
 static void Main(string[] args)
 {
     Tester t = new Tester();
     t.Method1();
 }