如何从(int)null获得0作为整数值.
编辑1:我想创建一个函数,将返回我们在它们各自的数据类型中的空表示的默认值.
编辑2:
在这种情况下,如何使用默认值.
(INT)值
其中Value可以为null或任何整数值.我不知道在运行时的数据类型的价值.
但是我会保证Value应该只包含null或者整数值.
解决方法
您可以使用Nullable结构
int value = new Nullable<int>().GetValueOrDefault();
您也可以使用默认关键字
int value = default(int);
第二编辑:
您需要一个接收任何类型的参数的函数,因此将使用对象.您的功能类似于Field> DataRow上的扩展方法
public static T GetValue<T>(object value) { if (value == null || value == DBNull.Value) return default(T); else return (T)value; }
使用该函数,如果你想要一个int(并且你希望值为一个int),你称之为:
int result = GetValue<int>(dataRow["Somefield"]);