Skip to content

Commit

Permalink
[mono] Fix hardcoded .NET 8.0 string in iOS sample (#103117)
Browse files Browse the repository at this point in the history
We always forget updating this string with new .NET releases so let's just not mention the version.
  • Loading branch information
akoeplinger authored Jun 6, 2024
1 parent 5091cc1 commit 7db9cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/sample/iOS/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static async Task Main(string[] args)
delegate* unmanaged<void> 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
Expand Down

0 comments on commit 7db9cef

Please sign in to comment.