I am looking for away to load a variable with a combination of text and content of other vars, but in separate lines. i.e.
$a=text1
$b=text2
$c = "text"
(line2) $a
(line3) $b
So in $c i would like to store $a and $b plus some text in different lines and show it up with write-host
'write-host $c'
i tried
$c=@'
this is line1
line2: contains $a
line3: contains $b
@'
but instead of the value of the vars I get $a, $b etc```