$myString = @" This is the first line This the second line This is the third line "@
Note : the @” and the ”@ must be the last symbols on the line.
$myString = @" This is the first line This the second line This is the third line "@
Note : the @” and the ”@ must be the last symbols on the line.
Frenquently asked questions about everyday real problems in PowerShell
1 comment:
$myString = @'
This is the first line
This the second line
This is the third line
$SkipVariableParsing
'@
Post a Comment