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