就在这里:
var genericListType = typeof(List<>);var specificListType = genericListType.MakeGenericType(typeof(double));var list = Activator.CreateInstance(specificListType);

就在这里:
var genericListType = typeof(List<>);var specificListType = genericListType.MakeGenericType(typeof(double));var list = Activator.CreateInstance(specificListType);