如何在 C# 中声明和初始化列表?
要在C#中声明和初始化列表,首先声明列表-
ListmyList = new List ()
现在添加元素-
ListmyList = new List () { "one", "two", "three", };
通过这个,我们在上面添加了六个元素。
以下是在C#中声明和初始化列表的完整代码-
示例
using System; using System.Collections.Generic; class Program { static void Main() { //初始化集合 List输出结果myList = new List () { "one", "two", "three", "four", "five", "size" }; Console.WriteLine(myList.Count); } }
6