1
エラー:here
文字列とPowerShellのXML関数エラー
$newXml = @'
<bindings>
<basicHttpBinding>
</basicHttpBinding>
</bindings>
'@
+ $newXml = <<<< @', is missing the terminator: '@.
エラー:here
文字列とPowerShellのXML関数エラー
$newXml = @'
<bindings>
<basicHttpBinding>
</basicHttpBinding>
</bindings>
'@
+ $newXml = <<<< @', is missing the terminator: '@.
つの事。 '@
の前に空白がなく、@'
の後に空白がないことを確認してください。つまり、終了ターミネータは列0から開始する必要があります。
コンテキストを増やす必要があります。投稿された文字列の初期化に間違いはありません。 – zdan