首页 > 解决方案 > 在 ASP.Net 中动态加载一个类

问题描述

例子:

改变这个:

int i = 0;
i = new ApplicationsDB().Paginate();

进入:

int i = 0;
classname = "ApplicationsDB";
i = new classname().Paginate();

类似的东西,可能吗?

标签: asp.netasp.net-mvc

解决方案


推荐阅读