Skip to content
This repository was archived by the owner on Feb 27, 2026. It is now read-only.

Commit d99f773

Browse files
missing semicolon
1 parent 545bc97 commit d99f773

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/c-sharp/concepts/arrays/arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type[] arrayName = { value1, value2, value3, ... valueN };
3838
type[] arrayName = [];
3939
4040
// Create the array variable and initialize it by specifying the contents:
41-
type[] arrayName = [ value1, value2, value3, ... valueN ]
41+
type[] arrayName = [ value1, value2, value3, ... valueN ];
4242
```
4343

4444
> **Note:** Arrays in C# have a set size, meaning the number of elements they hold cannot be changed once the array has been created.

0 commit comments

Comments
 (0)