Se você estiver usando o .NET 4.0 ou superior e desejar uma versão programática que não seja uma codificação de regras definidas fora do código , poderá criar umExpression
, compilar e executá-lo rapidamente.
O seguinte método de extensão utilizará ae Type
obterá o valor retornado default(T)
pelo Default
método na Expression
classe:
public static T GetDefaultValue<T>()
{
// We want an Func<T> which returns the default.
// Create that expression here.
Expression<Func<T>> e = Expression.Lambda<Func<T>>(
// The default value, always get what the *code* tells us.
Expression.Default(typeof(T))
);
// Compile and return the value.
return e.Compile()();
}
public static object GetDefaultValue(this Type type)
{
// Validate parameters.
if (type == null) throw new ArgumentNullException("type");
// We want an Func<object> which returns the default.
// Create that expression here.
Expression<Func<object>> e = Expression.Lambda<Func<object>>(
// Have to convert to object.
Expression.Convert(
// The default value, always get what the *code* tells us.
Expression.Default(type), typeof(object)
)
);
// Compile and return the value.
return e.Compile()();
}
Você também deve armazenar em cache o valor acima com base em Type
, mas esteja ciente de que, se você está chamando isso para um grande número de Type
instâncias, e não o usa constantemente, a memória consumida pelo cache pode superar os benefícios.