根据http://technet.microsoft.com/en-us/library/hh848302get-help about_data
和http://technet.microsoft.com/en-us/library/hh848302,[xml]
数据部分允许使用文字
但是,当我尝试使用文档中的 xml 块创建数据部分时
data{
[XML] @'
<p> Hello, World </p>
'@
}
Poweshell 抱怨错误消息
The '[XML]' operator is not allowed in restricted language mode or a Data section.
At C:\Users\Alex\AppData\Local\Temp\150a9138-ebc3-4af1-8aec-73bf724fdcf5.ps1:2 char:6
+ [XML] <<<< @'
+ CategoryInfo : ParserError: (XML:Token) [], ParseException
+ FullyQualifiedErrorId : OperatorNotSupportedInDataSection
我是在做一些愚蠢的事情,误读了文档还是文档中有错误?