我有以下方法 GetData 从文件创建 StreamReader

private void GetData(string file)
{
    string filename = Path.GetFileNameWithoutExtension(file);
    XmlDocument xmldoc = new XmlDocument();

    using (StreamReader sr = new StreamReader(file))
    {
        Stream bs = sr.BaseStream;
        Stream cl = mainParser.CleanMarkup(bs);
        try
        {
            xmldoc = mainParser.LoadDocument(bs);
        }
        catch (XmlException ex)
        {
            // Exceptions are usually caused by non-compliant documents.
            // These errors are not critical to the operation of this program.
            Console.WriteLine(filename + " " + ex.Message);
        }
    }
    Msdn msdnParser = new Msdn(xmldoc);

    ListViewItem lvitem = new ListViewItem(filename);
    lvitem.SubItems.Add(filename);
    foreach (string item in msdnParser.Subitems)
    {
        lvitem.SubItems.Add(item);
    }
    listView.Items.Add(lvitem);
}
mainParser.LoadDocument(bs) 调用以下内容:
public XmlDocument LoadDocument(Stream file)
{
    XmlDocument xmldoc = new XmlDocument();
    XmlReader xmlread = XmlReader.Create(file);
    xmldoc.Load(xmlread);

    return xmldoc;
}
StreamReaderGetData 处理。这是否意味着我不必处置 XmlReader 因为(我相信)这将处置其唯一的非托管资源?

最佳答案

最好的“经验法则”是:

如果某些东西实现了 IDisposable ,请始终将其包装在 using() 块中,以确保它拥有的任何非托管资源都被正确处理。

依赖于“某物”的当前实现处理底层资源的事实是危险的,将所有内容都包装在 using 中不会有什么坏处,只是为了安全起见 =)

关于c# - 如果我处置其底层流,我是否需要处置 XmlReader?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3517391/

10-12 21:55