集合类 列表List
List<int>list=new List<int>( ) ;
List<int> list=new List<int>( ) { 321,653,832 };
集合类 列表List
List<int>list=new List<int>( ) ;
List<int> list=new List<int>( ) { 321,653,832 };
列表可以存储任何类型的数据
列表就是系统提供的一个类
List list = new list();
class Program
{
static viod Main(string[] args)
{
List<int> list = new List<int>() {321,654 987};
list.Add(900);
list.Add(6732);
Console.Writeline(list[3]);
list.Count;
}
}
列表List
List<int> Z=new List<int>(){32,25,38};
集合(列表 list)
1,泛型
List<int> list = new List<int>();