Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 .NET 控制台应用程序(非常简单)。入口点采用臭名昭著的 string[] args 参数。这是否意味着我可以从命令行调用这个应用程序并将单个字符串作为参数传递?如果是这样,怎么做?
是的,string[] args它来自命令行。第零个元素是第一个参数,依此类推。请注意,与 C 或 C++ 不同,args[0]它不包含应用程序名称。
string[] args
args[0]
所以如果你这样做:
application.exe arg1 arg2 arg3
然后:
args[0] = arg1 args[1] = arg2 args[2] = arg3
如果您只传递一个参数,则可以作为args[0].
C:\application.exe 字符串参数