ZString
ZString copied to clipboard
Add support for interpolated strings via InterpolatedStringHandler
...so that appending an interpolated string like this:
sb.Append($"BLAHBLAH {integer}");
behind the scenes this should result in this (pseudo code)
ZString.AppendInterpolatedStringHandler handler = new ZString.AppendInterpolatedStringHandler(9, 1, zstringBuilder);
handler.AppendLiteral("BLAHBLAH ");
handler.AppendFormatted(value);
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 30 days.
Will anyone review the PR?