我有一个可以从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());
}
如何在这种情况下打印输出?