使用List中的类型作为泛型方法,例如
准备数据:
List<object> all = new List<object>();
all.Add(new CustomClass());
all.Add(new ...());
例外情况:
foreach (Type item in all)
{
temp.GenerateDocument<typeof(item)>(item);
}
这应该超出我对不同类型的陈述。