我正在尝试处置XmlWriter对象:

try
{
    [System.Xml.XmlWriter] $writer = [System.Xml.XmlWriter]::Create('c:\some.xml')
}
finally
{
    $writer.Dispose()
}

错误:



另一方面:
 $writer -is [IDisposable]
 # True

我应该怎么办?

最佳答案

System.Xml.XmlWriter上处理protected。您应该改为使用Close

$writer.Close

关于powershell - 如何在PowerShell中处理System.Xml.XmlWriter,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/745956/

10-12 15:37