예제 #1
0
파일: Program.cs 프로젝트: prabby/miniclr
        public static void Main()
        {
            NetworkLayer net = Singleton.Instance;
            if (net == null)
            {
                Debug.Print("Failed to initialize network layer");
                return;
            }

            Monitor monitor = new Monitor();

            NetworkTest test = new NetworkTest(net, monitor);
            test.Run(null);
        }
예제 #2
0
        public static void Main()
        {
            NetworkLayer net = Singleton.Instance;

            if (net == null)
            {
                Debug.Print("Failed to initialize network layer");
                return;
            }

            Monitor monitor = new Monitor();

            NetworkTest test = new NetworkTest(net, monitor);

            test.Run(null);
        }