I have an interpolated string which ends with an argument followed by a closing brace. It needs to have a formatting argument, however the string is taking the first double brace as the escaped brace and remaining as the brace closing the argument:
> $"foo:{16:x}"
"foo:10"
> $"foo:{16:x}}}"
"foo:x}"
How to I correctly write the interpolated string so that I get foo:10}
?