i 浏览几个文本箱,如果它们含有价值,如果它们有价值的话,我想通过这些箱子检查。
The textboxes are called txtText1, txtText2....txtText12. This is what I got so far:
for (int i = 1; i < 13; i++)
{
if(txtText[i] != String.Empty)
{
TextArray[i] = Convert.ToString(txtText[i].Text);
}
}
不允许使用txtText[i]。
我如何通过这些箱子?