一般要有一个数据集才可以。比如数组,数据源,集合,就可以用了。
用法。是foreach(string str in 数组) //或数据源,集合
{
//str就是数组中的值。如果数组是int型。那就要写成foreach(int a in 数组)
//它是一个一个读的。也就是遍历了。str就得到了其中的一个值.然后你要放到哪。
//就 xxxxxx = str 就行了。类型不一样就得转换str的类型
}
不知道这样是不是你要的答案。。希望能帮到你。
和for都差不多
foreach (类型 变量 in 组数)
{
方法体
}
bool flag = false;
foreach(Textbox tb in panel2.Controls)
{
if(tb.Text.trim == "")
flag = true;
}
如果有的Textbox为空,flag就为true
foreach(Control c in Controls)
{
if(c is TextBox)
{
if(textbox.IsEmpty())
}
}
举个例子
foreach (CheckBox ck in checkedListBox.Items)
{
//ck的操作
ck.Checked = true;
}