var condition = false;
Foo($"String is {(condition ? "True" : "False")} works");
but
Foo($"String is {(condition ? "True"
: "False")} fails");
I got compile error when I nicely format the conditional operator within my string interpolated statement?