C# 泛型类型约束 where
2021-01-05 03:27
标签:ems ram 接口 参数 style 引用 struct div HERE C# 泛型类型约束 where 标签:ems ram 接口 参数 style 引用 struct div HERE 原文地址:https://www.cnblogs.com/mojiejushi/p/13191198.html 1 class Program {
2 static void Main(string[] args) {
3
4 }
5 }
6
7 interface IMyInterface {
8 void Method1();
9 }
10
11 //一、六种类型约束
12 //1、类型参数必须是引用类型
13 class MyClass1