我试图读取传递的参数,
例如:
外壳:
MyApplication.exe -t 1233123
MyApplication Code:
dim tt as string = GetArgo(0).toString()
我想得到“1233123”(我试过Me.Startup但我的表单中没有启动事件)
答案 0 :(得分:3)
您可以通过调用Environment.GetCommandLineArgs
来获取参数:
Dim args() As String = Environment.GetCommandLineArgs()
然后你可以像任何其他数组一样迭代这个数组。请记住,数组中的第一项是执行程序的文件名。