.NET Framework 3.0/泛型简介
外观
微软在其 .NET 3.0 中引入了新的泛型特性。到目前为止,必须将整个列表声明为单个数据类型。然而,在 .NET 3.0 中,可以对同一个列表进行多个数据类型声明,并且它包含的数据类型也会发生变化。
List<string> customerList = new List<string>(); customerList.Add('Ravi'); customerList.Add('Bala'); List<int> customerList = new List<int>(); customerList.Add(1);