好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

C#控制台基础 list<>初始化的两种方法

代码一、

?

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace ConsoleApplication1

{

   class Program

   {

     static void Main( string [] args)

     {

       List< int > list1 = new List< int > { 1, 2, 3, 4, 5, };

     }

   }

}

代码二、

?

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace ConsoleApplication1

{

   class Program

   {

     static void Main( string [] args)

     {

       List< int > list1 = new List< int >();

       list1.Add(1);

       list1.Add(2);

       list1.Add(3);

       list1.Add(4);

       list1.Add(5);

     }

   }

}

以上就是list<>初始化的两种方法,希望大家以后多多支持服务器之家。

dy("nrwz");

查看更多关于C#控制台基础 list<>初始化的两种方法的详细内容...

  阅读:44次