如何:访问命令行参数 (Visual Basic)
更新:2007 年 11 月
下面的代码示例循环访问应用程序的命令行参数。
示例
For Each argument As String In My.Application.CommandLineArgs
' Add code here to use the argument.
Next
更新:2007 年 11 月
下面的代码示例循环访问应用程序的命令行参数。
For Each argument As String In My.Application.CommandLineArgs
' Add code here to use the argument.
Next