Windows窗体应用程序控制台输出

时间:2015-10-24 11:13:47

标签: windows visual-studio

我有一个可以从UI和cmd运行的应用程序。当它从控制台运行时我需要输出一些东西作为输出。这是Main()方法:

[STAThread]
    static void Main()
    {
        string[] args = Environment.GetCommandLineArgs();

        foreach (var arg in args)
        {
            if (arg == "-T")
            {
                Console.WriteLine("Example!!!"); //Nothing happens
                return;
            }
        }

        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1());
    }

如何在这种情况下打印输出?

0 个答案:

没有答案