完善所以c#相关的文档和代码

This commit is contained in:
zhuzhiqing
2022-12-23 15:42:02 +08:00
parent 1646c284f6
commit a427cb1b4d
48 changed files with 4325 additions and 65 deletions

View File

@@ -74,9 +74,6 @@ comments: true
/* 初始化数组 */
int[] arr = new int[5]; // { 0, 0, 0, 0, 0 }
int[] nums = { 1, 3, 2, 5, 4 };
var arr2=new int[5]; // { 0, 0, 0, 0, 0 }
var nums2=new int[]{1,2,3,4,5};
```
## 数组优点