Command 函式
更新:2007 年 11 月
傳回用來啟動 Visual Basic 或可執行程式 (利用 Visual Basic 開發) 之命令列的引數部分。
My 功能提供了比 Command 函式更強大的產能和效能。如需詳細資訊,請參閱 My.Application.CommandLineArgs 屬性。
Public Function Command() As String
備註
在傳回引數之後,您可以搜尋通用的分隔符號 (例如空格、正斜線或反斜線、連字號或引號),以分隔或搜尋字串中的個別參數。
對於以 Visual Basic 所開發且編譯成 .exe 檔的應用程式而言,Command 函式會傳回出現在命令列上的應用程式名稱之後的任何引數,其格式為:MyApp(cmdlineargs)。
範例
這個範例會使用 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
需求
命名空間 (Namespace)︰Microsoft.VisualBasic
**模組︰**Interaction
組件:Visual Basic Runtime Library (在 Microsoft.VisualBasic.dll 中)
請參閱
概念
參考
Environment.GetCommandLineArgs
My.Application.CommandLineArgs 屬性