C#中,创建一个数组,如何把数组的值加到listBox中去。
2个回答
展开全部
int[] a = new int[Convert.ToInt32(this.textBox1.Text)];
for(int i=0;i <a.Length;i++) a[i] = i;
StringBuilder sb = new StringBuilder();
for(int count=0,j=0;j <a.Length;j++)
{
sb.Append(a[j].ToString() + "/ ");
if((++count%10==0) || (count == a.Length))
{
this.listBox1.Items.Add(sb.ToString());
sb.Remove(0,sb.Length);
}
}
for(int i=0;i <a.Length;i++) a[i] = i;
StringBuilder sb = new StringBuilder();
for(int count=0,j=0;j <a.Length;j++)
{
sb.Append(a[j].ToString() + "/ ");
if((++count%10==0) || (count == a.Length))
{
this.listBox1.Items.Add(sb.ToString());
sb.Remove(0,sb.Length);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询