C#中,创建一个数组,如何把数组的值加到listBox中去。

2024年11月27日 19:55
有2个网友回答
网友(1):

int[] a = new int[Convert.ToInt32(this.textBox1.Text)];
for(int i=0;i
StringBuilder sb = new StringBuilder();
for(int count=0,j=0;j {
sb.Append(a[j].ToString() + "/ ");
if((++count%10==0) || (count == a.Length))
{
this.listBox1.Items.Add(sb.ToString());
sb.Remove(0,sb.Length);
}
}

网友(2):

假设数组 int[] is;
listbox.items.addrange(is);