C#的那个Program.cs中的Main(string[] Args)中的args就是参数列表,你可以改一下你自己主窗体和构造函数,把这个args传过去就行了,比如原本是Application.Run(new Form1());改为Application.Run(new Form1(Args));
或者也可以在程序中用诸如
string command = Environment.CommandLine;
string[] para = command.Split('\"');
这种来取,VB.net基本上也差不多的。