ZString icon indicating copy to clipboard operation
ZString copied to clipboard

Add support for interpolated strings via InterpolatedStringHandler

Open alex-jitbit opened this issue 9 months ago • 2 comments

...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);

alex-jitbit avatar Mar 24 '25 11:03 alex-jitbit

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.

github-actions[bot] avatar Sep 21 '25 00:09 github-actions[bot]

Will anyone review the PR?

universorum avatar Sep 26 '25 12:09 universorum