C#将字符串转换为类型参数

时间:2019-02-20 23:55:42

标签: c# reflection typeof gettype generic-type-argument

public ActionResult Customer(string fullNameSpace)
{
    var genType = fullNameSpace.ToGenericType(); //how can I do this?
    var clList = _adminService.GetCustomerList<genType>(23);
    return PartialView(clList);
}


public IEnumerable<CustomerVM> GetCustomerList<S>(int clientId) where S : IEntityVMSortOrder{
    ...
}

在不更改GetCustomerList函数的情况下,如何从传递的字符串参数中产生genType?如果有可能的话。

0 个答案:

没有答案