A double quoted string prefixed with a dollar ($) sign symbol can includes interpolation expression.
Syntax
$"<STRING>"
The STRING token can have interpolation expression and has the following syntax:
{<INTERPOLATION_EXPRESSION>[,<ALIGNMENT>][:<FORMAT_STRING>]}
Token | Description |
INTERPOLATION_EXPRESSION | The part that will produce a formatted output. |
ALIGNMENT | Imposed a minimum number of character. If positive it is right-aligned and if negative it is left-aligned. |
FORMAT_STRING | A format that is supported by the expression. Find more on here. |
If you needed to include { or } in your string output, escape it as {{ or }} respectively on which ever you need.
Example
var name = "World" var greeting = $"Hello {name}"
Leave a Reply