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

@ -86,7 +86,7 @@ comments: true
/* 初始化列表 */
// 无初始值
List<int> list1 = new ();
// 有初始值(注意数组的元素类型需为 int[] 的包装类 Integer[]
// 有初始值
int[] numbers = new int[] { 1, 3, 2, 5, 4 };
List<int> list = numbers.ToList();
```