c# 泛型的抗变和协变
2021-04-07 09:25
标签:mes space 报错 ace str col ring color c# c# 泛型的抗变和协变 标签:mes space 报错 ace str col ring color c# 原文地址:https://www.cnblogs.com/hnzheng/p/9113885.htmlnamespace test
{
// 泛型的协变,T 只能作为返回的参数
public interface Class1out T>
{
T Get();
int Count { get; }
}
public class Class2 : Class1
下一篇:c# 定义operator运算符