我有一个启动控制台应用程序进程的Windows服务,并在设定的时间调用它。
我相信我可以使用Arguments属性将参数传递给被调用的控制台应用程序...... process.StartInfo.Arguments = "0";
我在控制台应用中如何获取此参数?
Main可能会在字符串数组中传递此参数...
static void Main(string[] args)
{
Application.Run(new Form1());
}
然后在我的Form1类中是包含此参数的EventArgs e吗?
public Form1()
{
InitializeComponent();
}
public void Form1_Load(object sender, EventArgs e)
{
MyClass dataprocess = new MyClass();
dataprocess.InsertData(dataprocess.RetrieveData(my parameter to go here));
}
感谢您的帮助......