我有一个适用于调试的应用。命令行参数将传递到应用程序中。
但是当我从VS发布到磁盘上的目录,然后使用
启动应用程序时MyApp.application“MyArg”
然后,参数似乎没有传递给应用程序。
static class Program
{
public static string[] Args;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Args = args;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}