在C#中,Add
方法通常用于向集合(如List、Dictionary等)中添加元素。以下是使用Add
方法的一些示例:
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);
}
}
}
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}");
}
}
}
在這些示例中,我們首先導入了必要的命名空間(System
和System.Collections.Generic
),然后創建了List和Dictionary對象。接下來,我們使用Add
方法向這些對象中添加元素。最后,我們使用循環遍歷并輸出集合中的元素。