1
$newXml = @'
<bindings>
<basicHttpBinding>
</basicHttpBinding>
</bindings>
'@
+ $newXml = <<<< @', is missing the terminator: '@.
$newXml = @'
<bindings>
<basicHttpBinding>
</basicHttpBinding>
</bindings>
'@
+ $newXml = <<<< @', is missing the terminator: '@.
兩件事與here
字符串。確保在@'
之後沒有空白,並且在'@
之前沒有空白。也就是說,結束終止符必須從第0列開始。
您將不得不提供更多上下文。發佈的字符串初始化沒有任何問題。 – zdan