参见英文答案 >
Programmatic equivalent of default(Type)12个
什么是反射相当于:
什么是反射相当于:
default(object); //null
当我在运行时之前没有类型时,例如
public void Method(Type type) { var instance = type.CreateDefault(); //no such method exists,but I expect there is a way of doing this? }
解决方法
对于任何引用类型,默认值为空实例.对于任何值类型,可以通过Activator.CreateInstance获取默认值.但是当你有一个名为instance的变量时,建议你想要一个实际的实例而不是一个null引用…所以你可以这样做:
public object GetDefaultValue(Type type) { return type.IsValueType ? Activator.CreateInstance(type) : null; }
……这不是很清楚它有多有用.这是类型的默认值,与默认的类型实例不同.