Beispiel #1
0
        static void Main()
        {
            //stvara instancu AsynchIOTester koja poziva konstruktor
            AsynchIOTester theApp = new AsynchIOTester();

            theApp.Run();
        }
Beispiel #2
0
        public static void Main()
        {
            // create an instance of AsynchIOTester
            // which invokes the constructor
            AsynchIOTester theApp =
                new AsynchIOTester();

            // call the instance method
            theApp.Run();
        }