如何:访问命令行参数 (Visual Basic)

更新:2007 年 11 月

下面的代码示例循环访问应用程序的命令行参数。

示例

For Each argument As String In My.Application.CommandLineArgs
    ' Add code here to use the argument.
Next

请参见

任务

如何:为 Window 窗体应用程序启用批处理模式

参考

My.Application.CommandLineArgs 属性

Visual Basic 程序的结构