如何在 C# 列表中添加整数值?


若要在 C# 中的列表中添加整数值,请使用 Add() 方法。

首先,在 C# 中声明一个整数列表 -

List<int> list1 = new List<int>();

现在添加整数值 -

list1.Add(900);
list1.Add(400);
list1.Add(300);

让我们看看完整的代码 -

示例

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace Demo {
   public class Program {
      public static void Main(String[] args) {
         List<int> list1 = new List<int>();
         list1.Add(900);
         list1.Add(400);
         list1.Add(300);
         Console.WriteLine(list1.Count);
      }
   }
}

更新日期:2020 年 6 月 21 日

7K+ 浏览量

开启你的 事业

完成课程获得认证

开始
广告