Ejemplo n.º 1
0
        static void Main()
        {
            try
            {
                new UnitTest1().Run();
                new UnitTest2().Run();

#if !NETMF
                new UnitTest3().Run();
#endif

                Examples.RunExample1();
                Examples.RunExample2();
                Examples.RunExample3();
                Examples.RunExample4();

#if !NETMF
                ExamplesWithReflection.Run();
#endif
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }

            Console.WriteLine("[Press any key!]");
            Console.ReadKey(true);
        }
Ejemplo n.º 2
0
        static void Main()
        {
            try
            {
                Examples.RunExample1();
                Examples.RunExample2();
                Examples.RunExample3();
                Examples.RunExample4();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }

            Console.WriteLine("[Press any key!]");
            Console.ReadKey(true);
        }