返回用於啟動 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
返回用於啟動 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