Esempio n. 1
0
        static void Main(string[] args)
        {
            // Change current culture to Invariant culture to match nanoFramework culture setting
            CultureInfo dft = Thread.CurrentThread.CurrentCulture;

            Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;

            TestCode.Output();
        }
Esempio n. 2
0
        public static void Main()
        {
            TestCode.Output();

            for (; ;)
            {
                Thread.Sleep(10000);
            }
        }