Command函式介紹
Visual Basic語言參考
Command 函式
返回用於啟動 Visual Basic 或使用 Visual Basic 開發的可執行程式的命令行的參數部分。
My 功能可以提供比 Command 函式更高的效率和更好的性能。有關更多信息,請參見 My.Application.CommandLineArgs 屬性。
Public Function Command() As String
備註
參數返回後,您可以搜尋常用分隔設定(如空格、反斜槓、正斜槓、連字元或引號)斷開或搜尋單個參數的字元串。
對於用 Visual Basic 開發的且編譯為 .exe 檔案的應用程式,Command 函式返回在命令行中出現於應用程式名稱後的任何參數,其格式為:MyApp(cmdlineargs)。
示例
此示例使用 Command 函式返回包含數組的對象中的命令行參數。
Visual Basic 複製代碼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
要求
命名空間: Microsoft.VisualBasic
模組: Interaction
該程式集
Visual Basic Runtime Library(在 Microsoft.VisualBasic.dll 中)