Multiline String Variable

ID259
Link Referencehttps://blogs.technet.microsoft.com/heyscriptingguy/2015/12/31/powertip-use-here-strings-with-powershell/
Link Creditshttps://powershell.org/forums/topic/debugging-advanced-functions-with-multi-line-string-assignment-problems/
Link Technical DocumentationNot set
PlCodelangPowerShell
PlGroupStrings
PlItemTitleMultiline String Variable
Code# In PowerShell such variables are called: Here-Strings

$mySQLString = @"
SELECT 1
FROM dbo.TestTable
WHERE 1=1
"@
Result Example