本文通过实例代码给大家介绍了C#集合类用法的相关知识,非常不错,具有参考借鉴价值,需要的朋友可以参考下
下面介绍C#的集合类
1ArrayList
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace 动态数组ArrayList
{
class Program
{
static void Main(string[] args)
{
ArrayList a1 = new ArrayList();
a1.Add(100);
foreach (int number in new int[6] { 9, 3, 7, 2, 4, 8 })
{
a1.Add(number);
}
int[] number2 = new int[2] { 11, 12 };
a1.AddRange(number2);
a1.Remove(3);
a1.RemoveAt(3);
ArrayList al2 = new ArrayList(a1.GetRange(1,3));
Console.WriteLine("遍历方法1:");
foreach (int i in a1)
{
Console.WriteLine(i);
}
Console.WriteLine("遍历方法2:");
for (int i = 0; i < al2.Count; i++)
{
Console.WriteLine(al2[i]);
}
Console.ReadLine();
}
}
}
2 Stack
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace Stack集合类
{
class Program
{
static void Main(string[] args)
{
Stack s1 = new Stack();
Stack s2 = new Stack();
foreach (int i in new int[4] { 1, 2, 3, 4 })
{
s1.Push(i);
s2.Push(i);
}
foreach (int i in s1)
{
Console.WriteLine(i);
}
s1.Pop();
Console.WriteLine("出栈");
foreach (int i in s1)
{
Console.WriteLine(i);
}
int num=(int)s2.Peek();
Console.WriteLine("弹出最后一项{0}",num);
foreach (int i in s2)
{
Console.WriteLine(i);
}
Console.ReadLine();
}
}
}
3Queue
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace Queue集合类
{
class Program
{
static void Main(string[] args)
{
Queue q1 = new Queue();
Queue q2 = new Queue();
foreach(int i in new int [4]{1,2,3,4})
{
q1.Enqueue(i);
q2.Enqueue(i);
}
foreach (int i in q1)
{
Console.WriteLine(i);
}
q1.Dequeue();
Console.WriteLine("q1出队");
foreach (int i in q1)
{
Console.WriteLine(i);
}
int num=(int)q2.Peek();
Console.WriteLine("取q2开始处{0}",num);
foreach(int i in q2)
{
Console.WriteLine(i);
}
Console.ReadLine();
}
}
}
4Hashtable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace Hashtable集合类
{
class Program
{
static void Main(string[] args)
{
Hashtable h = new Hashtable();
h.Add("E","e");
h.Add("B", "b");
h.Add("C", "c");
h.Add("A", "a");
foreach (DictionaryEntry e in h)
{
Console.Write("{0},{1} ", e.Key, e.Value);
}
Console.WriteLine();
string s = (string)h["C"];
Console.WriteLine(s);
if (h.Contains("E"))
{
Console.WriteLine("含有E");
}
Console.WriteLine(h["A"]);
h.Remove(h["A"]);
h.Clear();
foreach (DictionaryEntry e in h)
{
Console.Write("{0},{1} ", e.Key, e.Value);
}
Console.ReadLine();
}
}
}
5SortedList
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace SortedList集合类
{
class Program
{
static void Main(string[] args)
{
SortedList s1 = new SortedList();
s1["c"]=41;
s1["a"]=42;
s1["d"]=11;
s1["b"]=13;
foreach (DictionaryEntry e in s1)
{
string s = (string)e.Key;
int i = (int)e.Value;
Console.Write("{0},{1} ",s,i);
}
Console.ReadLine();
}
}
}
总结
以上所述是小编给大家介绍的C#集合类用法实例代码详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程学习网网站的支持!
织梦狗教程
本文标题为:C#集合类用法实例代码详解


基础教程推荐
猜你喜欢
- c# – USING块在网站与Windows窗体中的行为不同 2023-09-20
- Unity shader实现高斯模糊效果 2023-01-16
- C#调用摄像头实现拍照功能的示例代码 2023-03-09
- Unity 如何获取鼠标停留位置下的物体 2023-04-10
- C#中 Json 序列化去掉null值的方法 2022-11-18
- C#通过标签软件Bartender的ZPL命令打印条码 2023-05-16
- 实例详解C#实现http不同方法的请求 2022-12-26
- C#获取指定目录下某种格式文件集并备份到指定文件夹 2023-05-30
- C# 解析XML和反序列化的示例 2023-04-14
- C#中的Linq to JSON操作详解 2023-06-08