c# add方法怎样使用

avatar
作者
筋斗云
阅读量:0

在C#中,Add方法通常用于向集合(如List、Dictionary等)中添加元素。以下是使用Add方法的一些示例:

  1. 向List中添加元素:
using System; using System.Collections.Generic;  class Program {     static void Main()     {         List<int> numbers = new List<int>();          // 使用Add方法向List中添加元素         numbers.Add(1);         numbers.Add(2);         numbers.Add(3);          // 输出List中的元素         foreach (int number in numbers)         {             Console.WriteLine(number);         }     } } 
  1. 向Dictionary中添加元素:
using System; using System.Collections.Generic;  class Program {     static void Main()     {         Dictionary<string, int> ages = new Dictionary<string, int>();          // 使用Add方法向Dictionary中添加元素         ages.Add("Alice", 30);         ages.Add("Bob", 25);         ages.Add("Charlie", 35);          // 输出Dictionary中的元素         foreach (KeyValuePair<string, int> entry in ages)         {             Console.WriteLine($"Name: {entry.Key}, Age: {entry.Value}");         }     } } 

在这些示例中,我们首先导入了必要的命名空间(SystemSystem.Collections.Generic),然后创建了List和Dictionary对象。接下来,我们使用Add方法向这些对象中添加元素。最后,我们使用循环遍历并输出集合中的元素。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!