示例#1
0
文件: Program.cs 项目: pipe01/LICC
        public static object Test(int num, object str = null)
        {
            LConsole.WriteLine($"Hello {num}, {str} ({str?.GetType()})", ConsoleColor.Blue);

            if (num == 42)
            {
                Console.SwitchFrontend(new PlainTextConsoleFrontend());
            }

            return(new TestClass());
        }