泛型集合List(C#)

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace ListDemo
{
class Program
{
static void Main(string[] args)
{
//泛型集合的基本使用
List<int> scoreList = new List<int>();
scoreList.Add();
scoreList.Add();
scoreList.Add();
scoreList.Add();
scoreList.Add();
//List<string> nameList = new List<string>();
scoreList.Insert(, );
//获取元素总数
Console.WriteLine("获取元素总数:"+scoreList.Count );
Console.WriteLine("_________________");
//Console.ReadLine();
//遍历集合
Console.WriteLine("遍历输出在第一种方法:");
foreach (int score in scoreList)
{
Console.WriteLine(score);
}
Console.WriteLine("_________________");
Console.WriteLine("遍历输出在第二种方法:");
for (int i = ; i < scoreList.Count; i++)
{
Console.WriteLine(scoreList[i]);
}
//删除一个元素
Console.WriteLine("_________________");
Console.WriteLine(" 删除一个元素");
scoreList.Remove();
scoreList.Remove();
for (int i = ; i < scoreList.Count; i++)
{
Console.WriteLine(scoreList[i]);
}
Console.WriteLine("_________________");
Console.WriteLine("清除所有元素");
scoreList.Clear();
Console.WriteLine("获取元素总数:" + scoreList.Count);
Console.ReadLine();
}
}
}

运行结果:

泛型集合List(C#)

上一篇:mDNS原理的简单理解——每个进入局域网的主机,如果开启了mDNS服务的话,都会向局域网内的所有主机组播一个消息,我是谁,和我的IP地址是多少。然后其他也有该服务的主机就会响应,也会告诉你,它是谁,它的IP地址是多少


下一篇:centos 6.5下安装nmap工具及简单用法