From 30874216ab44034efc0dd267faeca3db95283c1f Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 11 Nov 2025 14:41:07 -0800 Subject: [PATCH] void should be int --- docs/core/whats-new/dotnet-10/runtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/whats-new/dotnet-10/runtime.md b/docs/core/whats-new/dotnet-10/runtime.md index 3715455cf07a1..476276c5f3619 100644 --- a/docs/core/whats-new/dotnet-10/runtime.md +++ b/docs/core/whats-new/dotnet-10/runtime.md @@ -218,7 +218,7 @@ public class Program public int[] arr; } - public static void Main() + public static int Main() { int[] x = new int[10]; GCStruct y = new GCStruct() { arr = x };