国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#控制臺基礎 list<>初始化的兩種方法

2020-01-24 00:54:08
字體:
來源:轉載
供稿:網友

代碼一、

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<>初始化的兩種方法,希望大家以后多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 芦溪县| 林西县| 铁力市| 绍兴市| 微博| 宁海县| 马山县| 托克逊县| 亳州市| 稻城县| 兴山县| 新竹市| 囊谦县| 邵阳县| 全州县| 临沂市| 全州县| 石阡县| 资源县| 交口县| 伊通| 禹州市| 大石桥市| 东丽区| 宜宾市| 江川县| 无锡市| 阳江市| 博湖县| 邢台市| 白城市| 赣州市| 香河县| 静海县| 尉氏县| 绥棱县| 韶山市| 佳木斯市| 商水县| 原平市| 泉州市|