Skip to content

Add support for interpolated strings via InterpolatedStringHandler #121

Open
@alex-jitbit

Description

@alex-jitbit

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions