Multiline string

suggest change

There are multiple ways to create a multiline string in PowerShell:

"Hello`r`nWorld"
"Hello{0}World" -f [environment]::NewLine
"Hello
World"
@"
Hello
World
"@

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents