This commit is contained in:
krahets
2023-12-28 22:35:01 +08:00
parent d1f1473539
commit faf297c890
4 changed files with 4 additions and 3 deletions

View File

@ -48,7 +48,7 @@ comments: true
```csharp title="array.cs"
/* 初始化数组 */
int[] arr = new int[5]; // { 0, 0, 0, 0, 0 }
int[] arr = new int[5]; // [ 0, 0, 0, 0, 0 ]
int[] nums = [1, 3, 2, 5, 4];
```