public class yms_Entity<T> where T :DbContext { private static T _instance; public static readonly object SyncObject = new object(); public static T GetEntity() { if (_instance == null) { lock (SyncObject) { if (_instance == null) { _instance = (T)A…
List 类是 ArrayList 类的泛型等效类,某些情况下,用它比用数组和 ArrayList 都方便. 我们假设有一组数据,其中每一项数据都是一个结构. public struct Item{ public int Id; public string DisplayText;} 注意结构是不能给实例字段赋值的,即 public int Id = 1 是错误的. using System.Collections.Generic; List<Item> items = new L…
普通泛型 class Point< T>{ // 此处可以随便写标识符号,T是type的简称 private T var ; // var的类型由T指定,即:由外部指定 public T getVar(){ // 返回值的类型由外部决定 return var ; } public void setVar(T var){ // 设置的类型也由外部决定 this.var = var ; } }; public class GenericsDemo06{ public static void mai…