0 votes
in Dot Net by
Enhancement of interpolated verbatim strings in C#

1 Answer

0 votes
by

Order of the $ and @ tokens in interpolated verbatim strings can be any: both $@"..." and @$"..." are valid interpolated verbatim strings. In earlier C# versions, the $ token must appear before the @ token.

...