首先,声明一个列表 -
var teams = new List<string>();
要将项目添加到 C# 列表,请使用 Add() 方法 -
teams.Add("US"); teams.Add("Canada"); teams.Add("India"); teams.Add("Australia");
您可以尝试运行以下代码以将项目添加到 C# 列表中 -
using System; using System.Collections.Generic; public class Demo { public static void Main(string[] args) { var teams = new List<string>(); teams.Add("US"); teams.Add("Canada"); teams.Add("India"); teams.Add("Australia"); Console.WriteLine("Elements..."); foreach (var countries in teams) { Console.WriteLine(countries); } } }
以上是如何在 C# 中向列表添加项目?的详细内容。更多信息请关注PHP中文网其他相关文章!