fix(csharp): unified array statement (#1011)

pull/1016/head
hpstory 11 months ago committed by GitHub
parent f68bbb0d59
commit 9c0bb55150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,7 +42,7 @@ There are two ways to initialize arrays depending on the requirements: without i
```csharp title="array.cs"
/* Initialize array */
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];
```

@ -42,7 +42,7 @@
```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];
```

Loading…
Cancel
Save