Add the introduction to the reviewers

to the index.md
This commit is contained in:
krahets
2023-02-09 19:45:35 +08:00
parent 61a2c32f64
commit 3465b300e9
3 changed files with 18 additions and 4 deletions

View File

@ -15,7 +15,6 @@ public class list
{
/* 初始化列表 */
// 注意数组的元素类型是 int[] 的包装类 int[]
int[] numbers = new int[] { 1, 3, 2, 5, 4 };
List<int> list = numbers.ToList();
Console.WriteLine("列表 list = " + string.Join(",", list));