Interaction.Command 方法

定义

返回命令行的参数部分,该命令行用于启动 Visual Basic 或启动使用 Visual Basic 开发的可执行程序。 My 功能可以提供比 Command 函数更高的效率和更好的性能。 有关详细信息,请参阅 CommandLineArgs

public:
 static System::String ^ Command();
public static string Command ();
static member Command : unit -> string
Public Function Command () As String

返回

命令行的参数部分,该命令行用于启动 Visual Basic 或启动使用 Visual Basic 开发的可执行程序。

My 功能可以提供比 Command 函数更高的效率和更好的性能。 有关详细信息,请参阅 CommandLineArgs

示例

此示例使用 Command 函数返回包含数组的 对象中的命令行参数。

Function GetCommandLineArgs() As String()
    ' Declare variables.
    Dim separators As String = " "
    Dim commands As String = Microsoft.VisualBasic.Interaction.Command()
    Dim args() As String = commands.Split(separators.ToCharArray)
    Return args
End Function

注解

返回参数后,可以搜索常用分隔符(如空格、后斜杠或正斜杠、连字符或引号),以拆分或搜索单个参数的字符串。

对于使用 Visual Basic 开发并编译为 .exe 文件的应用程序,函数 Command 将返回命令行上应用程序名称后显示的任何参数,格式如下: MyApp(cmdlineargs)

适用于

另请参阅