Exemple #1
0
        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());
        }