From 8294f9ea0b225b17d1ea2c096a7afee0211ae9f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Thu, 6 Jun 2024 12:06:35 +0200 Subject: [PATCH] [mono] Fix hardcoded .NET 8.0 string in iOS sample We always forget updating this string with new .NET releases so let's just not mention the version. --- src/mono/sample/iOS/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/sample/iOS/Program.cs b/src/mono/sample/iOS/Program.cs index 54cddc382d237c..7b69b43a358f80 100644 --- a/src/mono/sample/iOS/Program.cs +++ b/src/mono/sample/iOS/Program.cs @@ -49,7 +49,7 @@ public static async Task Main(string[] args) delegate* unmanaged unmanagedPtr = &OnButtonClick; ios_register_button_click(unmanagedPtr); } - const string msg = "Hello World!\n.NET 8.0"; + const string msg = "Hello World!\n.NET Runtime"; for (int i = 0; i < msg.Length; i++) { // a kind of an animation