我想找到所有扩展名为.xls的文件并将文件名打印到组合框中。当我运行我的程序时,组合框为空,但调试器显示文件数组列表的计数为 4。
这就是我所拥有的:
private void Form1_Load(object sender, EventArgs e)
{
ArrayList files = new ArrayList();
files.AddRange(System.IO.Directory.GetFiles("c:\\test", "*.xls"));
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
foreach (int i in files)
{
comboBox1.Items.Add(i);
}
comboBox1.SelectedIndex = 0;
}