找到 2628 篇文章 关于 C#
716 次浏览
要获取一个迭代 LinkedList 的枚举器,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList
89 次浏览
要获取 SortedSet 中的元素数量,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet
180 次浏览
要获取 Stack 中包含的元素数量,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack
160 次浏览
要将对象添加到队列的末尾,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue
337 次浏览
要将栈转换为数组,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack
280 次浏览
要将队列转换为数组,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue
159 次浏览
要获取 Queue 中包含的元素数量,代码如下所示:示例 在线演示using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue
68 次浏览
要获取 SortedList 中包含的元素数量,代码如下所示:示例 在线演示using System; using System.Collections; public class Demo { public static void Main(String[] args){ SortedList sortedList = new SortedList(); sortedList.Add("A", "1"); sortedList.Add("B", "2"); sortedList.Add("C", "3"); sortedList.Add("D", "4"); sortedList.Add("E", "5"); sortedList.Add("F", "6"); sortedList.Add("G", "7"); sortedList.Add("H", "8"); sortedList.Add("I", "9"); sortedList.Add("J", "10"); Console.WriteLine("SortedList 元素..."); foreach(DictionaryEntry d in sortedList){ ... 阅读更多
浏览量:72
要获取一个迭代遍历Collection的枚举器,代码如下:示例 在线演示using System; using System.Collections.ObjectModel; public class Demo { public static void Main(){ Collection col = new Collection(); col.Add("Andy"); col.Add("Kevin"); col.Add("John"); col.Add("Kevin"); col.Add("Mary"); col.Add("Katie"); col.Add("Barry"); col.Add("Nathan"); col.Add("Mark"); Console.WriteLine("元素数量 = "+ col.Count); Console.WriteLine("迭代遍历集合..."); var enumerator = col.GetEnumerator(); while (enumerator.MoveNext()) { ... 阅读更多
浏览量:67
要获取ArrayList中实际包含的元素数量,代码如下:示例 在线演示using System; using System.Collections; public class Demo { public static void Main(String[] args){ ArrayList list1 = new ArrayList(); list1.Add("A"); list1.Add("B"); list1.Add("C"); list1.Add("D"); list1.Add("E"); list1.Add("F"); list1.Add("G"); list1.Add("H"); list1.Add("I"); Console.WriteLine("ArrayList1中的元素..."); foreach (string res in list1){ Console.WriteLine(res); } ... 阅读更多