foreach (var property in typeof(T).GetProperties()) if (property.PropertyType.IsValueType) console.write(该属性的默认值)
Activator.CreateInstance(property.PropertyType)
这是个办法,不知道还有没有其它方法了
default(T)
我要T下面的属性的默认值。
@happydaily: 参考 Programmatic equivalent of default(Type)
@dudu: 学习了,