Si está utilizando .NET 4.0 o superior y desea una versión programática que no sea una codificación de reglas definidas fuera del código , puede crear Expression
, compilar y ejecutar sobre la marcha.
El siguiente método de extensión tomará ay Type
obtendrá el valor devuelto a default(T)
través del Default
método en la Expression
clase:
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()();
}
También debe almacenar en caché el valor anterior en función del Type
, pero tenga en cuenta que si llama a esto para una gran cantidad de Type
instancias, y no lo usa constantemente, la memoria consumida por la memoria caché podría superar los beneficios.