当只知道Type时获得该类型的默认值
public static object GetDefaultValue(Type type) { return type.IsValueType ? Activator.CreateInstance(type) : null; }