gpt4 book ai didi

c# - 如何从 ListView 中获取所有项目到字符串 []?

转载 作者:行者123 更新时间:2023-12-04 02:20:16 24 4
gpt4 key购买 nike

ProcessStartInfo startInfo = new ProcessStartInfo();

startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.FileName = @".\ext.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
int i=0;
string item = listView1.Items[i++].Text;
startInfo.Arguments = "--logfile=duration_output.txt " + (item);

我试图将所有项目列为 string[],但随后应用程序给了我一个空的日志文件。
当我使用简单的 string item = listView1.Items[i++].Text 时,它只给我输出中的第一个文件。

这怎么可能?

最佳答案

你在找这样的东西吗?

startInfo.Arguments = "--logfile=duration_output.txt " +
string.Join(" ", from item in listView1.Items.Cast<ListViewItem>()
select @"""" + item.Text + @""""
);

关于c# - 如何从 ListView 中获取所有项目到字符串 []?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8405904/

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