diff --git a/standard/arrays.md b/standard/arrays.md index 87702a383..b2bfd67ad 100644 --- a/standard/arrays.md +++ b/standard/arrays.md @@ -10,6 +10,7 @@ The element type of an array can itself be an array type ([ยง16.2.1](arrays.md#1 > *Example*: > +> > ```csharp > int[][] pascals = > { diff --git a/tools/example-templates/code-in-main/Program.cs b/tools/example-templates/code-in-main/Program.cs new file mode 100644 index 000000000..2b701225c --- /dev/null +++ b/tools/example-templates/code-in-main/Program.cs @@ -0,0 +1,7 @@ +class Program +{ + static void Main() + { + $example-code + } +} diff --git a/tools/example-templates/code-in-main/Project.csproj b/tools/example-templates/code-in-main/Project.csproj new file mode 100644 index 000000000..2a1c70ea3 --- /dev/null +++ b/tools/example-templates/code-in-main/Project.csproj @@ -0,0 +1,11 @@ + + + + Exe + net6.0 + enable + disable + $example-name + + +