让我举个例子:
interface IGenericCar< T > {...}
interface IGarrage< TCar > : where TCar: IGenericCar< (**any type here**) > {...}
基本上,我希望我的通用IGarrage依赖IGenericCar,无论它是IGenericCar<int>还是IGenericCar<System.Color>,因为我对该类型没有任何依赖。
IGenericCar
IGenericCar<int>
IGenericCar<System.Color>
通常有两种方法可以实现此目的。
选项1 :添加另一个参数来IGarrage表示T应该传递给IGenericCar<T>约束的参数:
IGarrage
T
IGenericCar<T>
interface IGarrage<TCar,TOther> where TCar : IGenericCar<TOther> { ... }
选项2 :定义一个基本接口,IGenericCar<T>该接口不是通用接口,并且针对该接口进行约束
interface IGenericCar { ... } interface IGenericCar<T> : IGenericCar { ... } interface IGarrage<TCar> where TCar : IGenericCar { ... }