如何在 C# 中声明和初始化列表?

要在 C# 中声明和初始化列表,首先声明列表 -

List<string> myList = new List<string>()

现在添加元素 -

List<string> myList = new List<string>() {

   "one",

   "two",

   "three",

};

通过这个,我们在上面添加了六个元素。

以下是在 C# 中声明和初始化列表的完整代码 -

示例

using System;

using System.Collections.Generic;

class Program {

   static void Main() {

      // 初始化集合

      List<string> myList = new List<string>() {

         "one",

         "two",

         "three",

         "four",

         "five",

         "size"

      };

      Console.WriteLine(myList.Count);

   }

}

输出结果
6

以上是 如何在 C# 中声明和初始化列表? 的全部内容, 来源链接: utcz.com/z/347609.html

回到顶部