我有 2 个文本框,我尝试从中收集数据。我正在循环它们,但是当程序要从它们那里收集数据并且它们没有任何值时,它们是空的,我得到一个格式异常,说:“输入字符串的格式不正确。”
if (this.Controls["txt_db0" + count].Text != null)
{
//if the value in the textbox is not null
int db = int.Parse((this.Controls["txt_db0" + count].Text));
//set my "db" integer to the value of the textbox.
}
我将 if 语句放在那里以过滤掉它们中是否没有值,即使我得到格式异常,所以我一定做错了什么。