从 String 到 TextReader 的扩展方法...如何关闭流?

发布于 2024-10-13 05:59:50 字数 224 浏览 3 评论 0原文

是否可以创建与此类似的扩展方法?完成后我应该如何处理 Closing() 流?

    public static TextReader ToTextReader(this string XML)
    {
        StringReader sr = new StringReader(XML);
        return sr;
    }

Is it possible to create an extension method similar to this? How should I handle Closing() the stream when finished?

    public static TextReader ToTextReader(this string XML)
    {
        StringReader sr = new StringReader(XML);
        return sr;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烂柯人 2024-10-20 05:59:50

你不需要;当调用代码关闭 TextReader (理应如此)时,Stream 也会自动关闭。无需单独关闭这两个对象。

You don't need to; when the calling code closes the TextReader (as it should), the Stream is automatically closed as well. There's no need to close both objects individually.

扬花落满肩 2024-10-20 05:59:50

你不应该。调用者有责任获取 TextReader 对象和相应的 Stream

You shouldn't. It's the responsibility of the caller to dipsose of the TextReader object and the corresponding Stream

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文