我使用扩展方法检查DataRowField是否为null
public static string GetValue(this System.Data.DataRow Row, string Column)
{
if (Row[Column] == DBNull.Value)
{
return null;
}
else
{
return Row[Column].ToString();
}
}
现在我想知道我是否可以使这更通用。在我的情况下,返回类型始终是字符串,但列也可以是Int32或DateTime
像
这样的东西public static T GetValue<T>(this System.Data.DataRow Row, string Column, type Type)
答案 0 :(得分:6)
public static T value<T>(this DataRow row, string columnName, T defaultValue = default(T))
=> row[columnName] is T t ? t : defaultValue;
或早期的C#版本:
public static T value<T>(this DataRow row, string columnName, T defaultValue = default(T))
{
object o = row[columnName];
if (o is T) return (T)o;
return defaultValue;
}
和样本使用(基础类型必须与没有转换完全匹配):
int i0 = dr.value<int>("col"); // i0 = 0 if the underlying type is not int
int i1 = dr.value("col", -1); // i1 = -1 if the underlying type is not int
没有扩展名的其他替代方案可以是可以为空的类型:
string s = dr["col"] as string; // s = null if the underlying type is not string
int? i = dr["col"] as int?; // i = null if the underlying type is not int
int i1 = dr["col"] as int? ?? -1; // i = -1 if the underlying type is not int
如果案例不匹配because a faster case sensitive lookup is attempted first before the slower case insensitive search,列名查找会更慢。
答案 1 :(得分:0)
您的方法的签名如下
lines=$(cat file | wc -l)
if [ "$lines" -gt "some_value" ] ; then kill -9 "job_id" ; fi
在其他部分只需更改以下内容
public static T GetValue<T>(this System.Data.DataRow Row, string Column)