温馨提示×

c# add方法哪里可以实操

c#
小樊
85
2024-10-18 12:05:24
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,Add方法通常与集合类一起使用,如List<T>Dictionary<TKey, TValue>等。这些集合类都提供了Add方法,用于向集合中添加元素。以下是一些实操示例:

  1. 使用List的Add方法
using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 创建一个整数列表
        List<int> numbers = new List<int>();

        // 使用Add方法向列表中添加元素
        numbers.Add(1);
        numbers.Add(2);
        numbers.Add(3);

        // 输出列表中的元素
        foreach (int number in numbers)
        {
            Console.WriteLine(number);
        }
    }
}
  1. 使用Dictionary<TKey, TValue>的Add方法
using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 创建一个字典
        Dictionary<string, int> ages = new Dictionary<string, int>();

        // 使用Add方法向字典中添加元素
        ages.Add("Alice", 30);
        ages.Add("Bob", 25);
        ages.Add("Charlie", 35);

        // 输出字典中的元素
        foreach (KeyValuePair<string, int> entry in ages)
        {
            Console.WriteLine($"{entry.Key}: {entry.Value}");
        }
    }
}

在这些示例中,我们首先创建了相应的集合对象(List<int>Dictionary<string, int>),然后使用Add方法向集合中添加元素。最后,我们使用循环遍历集合并输出其内容。

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读:kettle c#哪里可以实操

0