摘要:
空接合运算符(??):op1 ?? op2 ===op1 == null ? op2 : op1 ( tip:string.empty<>null)List<T>:List 1 namespace 泛型 2 { 3 class Program 4 { 5 static void Main(string[] args) 6 { 7 List<MyClass> list = new List<MyClass>(); 8 list.Add(new MyClass("a")); 9 ... 阅读全文