作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个由数据源(值和 ID)填充的组合框
comboBox_Degree.DataSource = ds.Tables["Field"];`
comboBox_Degree.DisplayMember = "Field_Degree";
comboBox_Degree.ValueMember = "Field_ID";
现在我想在 SelectedIndexChanged 事件发生时检索 ID。但是当我将它转换为 int 时,我遇到了这样的错误。
int fid = Convert.ToInt32(comboBox_Degree.SelectedValue.ToString());
错误:
Input string was not in a correct format.
如何将这个值转换为整数?
最佳答案
使用这个:
int fid;
bool parseOK = Int32.TryParse(comboBox_Degree.SelectedValue.ToString(), out fid);
关于c# - 如何将组合框的选定值转换为整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19964221/
我是一名优秀的程序员,十分优秀!