Skip to content

Commit 7db9cef

Browse files
authored
[mono] Fix hardcoded .NET 8.0 string in iOS sample (#103117)
We always forget updating this string with new .NET releases so let's just not mention the version.
1 parent 5091cc1 commit 7db9cef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mono/sample/iOS/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static async Task Main(string[] args)
4949
delegate* unmanaged<void> unmanagedPtr = &OnButtonClick;
5050
ios_register_button_click(unmanagedPtr);
5151
}
52-
const string msg = "Hello World!\n.NET 8.0";
52+
const string msg = "Hello World!\n.NET Runtime";
5353
for (int i = 0; i < msg.Length; i++)
5454
{
5555
// a kind of an animation

0 commit comments

Comments
 (0)