Open
Description
...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);
Metadata
Metadata
Assignees
Labels
No labels