编程语言
首页 > 编程语言> > C#基础 List Add 添加元素

C#基础 List Add 添加元素

作者:互联网

  • .NET Framework : 4.7.2
  •        IDE : Visual Studio Community 2019
  •         OS : Windows 10 x64
  •     typesetting : Markdown
  •         blog : blog.csdn.net/yushaopu
  •        github : github.com/GratefulHeartCoder

code

using System;
using System.Collections.Generic;

namespace ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            // 泛型,只能加入int类型的,或者可以转换成Int类型的数据
            var testList = new List<int>();
            testList.Add(1);
            testList.Add(2);

            foreach (var e in testList)
            {
                Console.WriteLine(e);
            }
            Console.ReadKey();
        }
    }
}

result

1
2

resource


感恩曾经帮助过 心少朴 的人。
C#优秀,值得学习。.NET Core具有跨平台的能力,值得关注。
Console,WinForm,WPF,ASP.NET,Azure WebJob,WCF,Unity3d,UWP可以适当地了解。
注:此文是自学笔记所生,质量中下等,故要三思而后行。新手到此,不可照搬,应先研究其理象数,待能变通之时,自然跳出深坑。

标签:github,Console,C#,testList,List,Add,docs,NET,com
来源: https://blog.csdn.net/yushaopu/article/details/89928875