This question sounds similar to this:
What's the @ in front of a string in C#?
But I'm already aware of the meaning of the @-character in front of a string literal in C#.
However now I've seen this in an example:
var xml = $@"<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>text</text>
        </binding>
    </visual>
    <audio src='ms-winsoundevent:Notification.Looping.Alarm10' loop='true'/>
</toast>";
There is an additional $ coming with the @. What does this mean?
 
     
     
    