应该是什么(???) 我想打开我的简单文件资源管理器中的3个选定文件
private void Open_Click(object sender, System.EventArgs e)
{
foreach (???)
{
string ImageViewName = listView1.SelectedItems[0].Text;
System.Diagnostics.Process.Start(@textBox1.Text.Remove(3, 1) + "/" + ImageViewName);
}
}
textbox1中的是我的文件路径
答案 0 :(得分:0)
假设每个文件都在名为Files
的列表中foreach (File myFile in Files){
//Do something with myFile
}
foreach块将遍历文件中的每个文件。当前所选文件可在foreach块中访问,在此实例中称为“myFile”。
我是stackoverflow的新手,所以我也愿意接受有关我的答案的建议!