什么是允许您计算列表框中项目数的命令?

时间:2015-12-08 18:04:49

标签: c# listbox

我正在编写一个项目,我在列表框中显示一百个随机数,然后我找到最小的数字,最大的数字,数字集的范围和偶数的数量。问题是,我必须使用while循环。一旦随机数达到100,我需要一种方法来停止循环。是否有一个简单的命令将其提取为整数?

2 个答案:

答案 0 :(得分:1)

您可以按如下方式获取列表框中的项目数,

While(ListBox1.Items.Count <=100)
{
  // Your Logic
}

找到最大的数字是,

//To Find Largest number
List<int>  listboxItems = new List<int>();
foreach (var item in listBox1.Items)
{
listboxItems.Add(Convert.ToInt32(item));
}
int Largest =  listboxItems.Max();

答案 1 :(得分:0)

如果我理解得很好,你想要经历一百次循环?

int step = 0;
for(i=0; i < 100; i++)
{
  // Your Logic
}