You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix backwards incompatibility with .NET standard 2.0 by re-adding overloads with string parameters (#439)
* Add sample to test current issues
* Update code generator to include string overloads at all times
* Remove ReadOnlySpan<char> from ImGui.Manual.cs
* Create ImGui.Manual.ReadOnlySpan.cs
* Add AsSpan to demonstrate
// When .NET Standard 2.1 is available, we can use ReadOnlySpan<char> instead of string, so generate additional overloads for methods containing string parameters.
ImGui.Text($"Hello, world {Random.Shared.Next(100)}!".AsSpan());// Note that this call will STILL allocate memory due to string interpolation, but you can prevent that from happening by using an InterpolatedStringHandler.
0 commit comments