我有这样的课:
public class Proxy<TClient>()
where TClient : ClientBase<TChannel>
{
}
我希望能够指定如下内容:
where TClient : ClientBase<TChannel>
where TChannel : class
但没有像这样在类定义中指定它:
public class Proxy<TClient, TChannel>()
有没有办法做到这一点,或者我需要像上面那样定义第二种类型?