Esempio n. 1
0
        public void Path_GetInvalidFileNameChars_NET()
        {
            Console.WriteLine("Path.GetInvalidFileNameChars()");
            Console.WriteLine("\nThe .NET method is used.\n");

            UnitTestConstants.StopWatcher(true);
            foreach (var c in Path.GetInvalidFileNameChars())
            {
                Console.WriteLine("\tChar: [{0}]", c);
            }
            Console.WriteLine("\n{0}", UnitTestConstants.Reporter(true));
        }