这篇文章主要介绍了C#控制台基础 list<>初始化的两种方法,需要的朋友可以参考下
这篇文章主要介绍了C#控制台基础 list<>初始化的两种方法,需要的朋友可以参考下
这篇文章主要介绍了C#控制台基础 list<>初始化的两种方法,需要的朋友可以参考下
代码一、
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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, }; } }} |
代码二、
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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<>初始化的两种方法,希望大家以后多多支持米米素材网。
发表评论