我有一个 Winform 应用程序,它将一个参数作为参数。
static class Program
{
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Gauges(args));
}
}
该程序每天由另一个应用程序执行数次。
是否可以检查我的程序是否已经在运行,如果是,我可以使用带有最新参数的正在运行的实例吗?