gpt4 book ai didi

c# - 将数组值返回到列表框 (C#)

转载 作者:行者123 更新时间:2023-12-02 07:31:44 24 4
gpt4 key购买 nike

我有一个从文本文件获取其值的数组。每一行都是一个数组值。我试图将每个数组值放入列表框中。比如

[0] - Hello
[1] - Goodbye

在列表框中,第一个选项是你好,第二个选项是再见等。

文本文件是分开的行,你好和再见

这是我对文本文件中的数组进行排序的代码:

StreamReader sr = new StreamReader("text.txt");
int counter = 0;
string line;
string[] linea;
linea = new string[100];
while ((line = sr.ReadLine()) != null)
{
linea[counter] = line;
counter++;
}
sr.Close();

这是我的列表框代码:

this.listBox1.Items.AddRange(new object[] {
// Values go here
// i want the arrays here, so that its like "hello", "goodbye",
});

非常感谢您的帮助。我正在使用 MS Visual Studio 2010。

最佳答案

您可以为列表框分配数据源:

this.listBox1.DataSource = object[];

HTH。

关于c# - 将数组值返回到列表框 (C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8291006/

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