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.
我使用互斥锁为我的应用程序运行 1 个单个应用程序,当使用命令行或“打开方式”发送参数时,我想将该参数的字符串添加到列表框中,有什么建议吗?
由于该方法的返回是一个字符串[],您应该能够简单地将其设置为列表的数据源。就像是:
listbox.DataSource = Environment.GetCommandLineArgs();