我的Windows应用程序接受args,我使用它来设置Window行为
问题是我需要在一些参数中传递文本,但我的应用程序将其视为多个args,所以,这个:
"http://www.google.com/" contact 450 300 false "Contact Info" true "Stay Visible" true
实际上有11个参数而不是我期待的9 个参数.
将"联系信息"和"保持可见"作为唯一参数传递的诀窍是什么?
您是否直接从命令行运行它?如果是这样,我希望工作得很好.(顺便说一句,我假设你正在使用Main方法中的参数?)
例如,这是一个小测试应用程序:
using System; class Test { static void Main(string[] args) { foreach (string arg in args) { Console.WriteLine(arg); } } }
执行:
>test.exe first "second arg" third first second arg third
这是一个控制台应用程序,但就传递给Main方法的内容而言,它与WinForms之间没有区别.