我试图这样做:
Type type = Type.GetType(string.Format("Gestor.Data.Entities.{0},Gestor.Data",e.Item.Value)); MetaDataUtil.GetColumnasGrid<type>();@H_403_4@但它不工作,你有什么想法可以这样做吗?
解决方法
你需要用这个反思.
var method = typeof(MetaDataUtil) .GetMethod("GetColumnasGrid") .MakeGenericMethod(new [] { type }) .Invoke(null,null);