编译器错误 CS0314
不能将类型“type1”用作泛型类型或方法“name”中的类型参数“name”。 没有从“type1”到“type2”的装箱转换或类型参数转换。
当泛型类型使用受约束的类型参数时,新类也必须满足这些相同的约束。
- 在下面的示例中,将
where T : ClassConstraint
添加到类B
中。
下面的代码生成 CS0314:
// cs0314.cs
// Compile with: /target:library
public class ClassConstraint { }
public class A<T> where T : ClassConstraint
{ }
public class B<T> : A<T> //CS0314
{ }
// Try using this instead.
public class C<T> : A<T> where T : ClassConstraint
{ }