Jika Anda menggunakan .NET 4.0 atau di atas dan Anda menginginkan versi program yang bukan kodifikasi aturan yang didefinisikan di luar kode , Anda dapat membuat Expression
, mengkompilasi, dan menjalankannya sambil jalan.
Metode ekstensi berikut akan mengambil Type
dan mendapatkan nilai yang dikembalikan dari default(T)
melalui Default
metode di Expression
kelas:
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()();
}
Anda juga harus men-cache nilai di atas berdasarkan pada Type
, tetapi perlu diketahui jika Anda memanggil ini untuk sejumlah besar Type
contoh, dan jangan menggunakannya terus-menerus, memori yang dikonsumsi oleh cache mungkin lebih besar daripada manfaatnya.