-
在C#入门经典教程中学习使用泛型集合List
资源介绍
使用泛型集合List
Student stu1 = students[2];
stu1.SayHi();
Students.RemoveAt(0);
//List 方式
foreach (Student stu in students)
{
Console.WriteLine(stu.Name);
}
List的访问方式与ArrayList相同
使用索引访问,无需类型转换
利用索引删除
遍历时不需要类型转换
- 上一篇: Dictionary
概述-C#入门经典教程 - 下一篇: 什么是泛型集合-C#入门经典教程