作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何从泛型方法返回空值?
protected T ValueOrDefault<T>(IDataReader reader, int ordinalId)
{
Type t = typeof(reader.GetValue(ordinalId));
if (t.IsValueType){
//Struct. How do I return null?
} else {
//Class
//just return null
return default(T);
}
}
最佳答案
default(T)
适用于这两种情况。
关于c# - 从泛型方法返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5224763/
我是一名优秀的程序员,十分优秀!