如何在PowerShell中配置System.Xml.XmlWriter

前端之家收集整理的这篇文章主要介绍了如何在PowerShell中配置System.Xml.XmlWriter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图处理XmlWriter对象:
try
{
    [System.Xml.XmlWriter] $writer = [System.Xml.XmlWriter]::Create('c:\some.xml')
}
finally
{
    $writer.Dispose()
}

错误

Method invocation Failed because
[System.Xml.XmlWellFormedWriter]
doesn’t contain a method named
‘Dispose’.

另一方面:

$writer -is [IDisposable]
 # True

我该怎么办?

Dispose是System.Xml.XmlWriter上的 protected.你应该使用关闭.
$writer.Close
原文链接:https://www.f2er.com/xml/292240.html

猜你在找的XML相关文章