标签: c# datagridview formatexception
我有一个数据网格视图,其中我有引用次数列。我正在尝试此代码从列中检索数据,但它抛出格式异常异常,请帮助这里是我的代码:
int GSCitations = int.Parse(Convert.ToString(row.Cells[2].Value));
答案 0 :(得分:2)
这只能表示row.Cells[2]的内容不是有效整数且无法转换为int。
row.Cells[2]
int
使用Int32.TryParse代替