eightHundreds
4/27/2017 - 7:23 AM

当只知道Type时获得该类型的默认值

当只知道Type时获得该类型的默认值

public static object GetDefaultValue(Type type) {
   return type.IsValueType ? Activator.CreateInstance(type) : null;
}