gpt4 book ai didi

vb.net - 从 vb.net 中的命令行获取参数

转载 作者:行者123 更新时间:2023-12-02 08:39:48 26 4
gpt4 key购买 nike

是否可以从 processPath 返回参数?在这个例子中?
这可能更有意义,抱歉。

Dim processName As String

Dim processPath As String

If processName = "cmd" Then
Dim arguments As String() = Environment.GetCommandLineArgs()
Console.WriteLine("GetCommandLineArgs: {0}", String.Join(", ", arguments))
End If

最佳答案

实现此目的的一种简单(且干净)的方法是修改您的 Sub Main如下,

Sub Main(args As String())
' CMD Arguments are contained in the args variable
Console.WriteLine("GetCommandLineArgs: {0}", String.Join(", ", args))
End Sub

关于vb.net - 从 vb.net 中的命令行获取参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17709561/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com