在 C# 中,方法是否可以返回 List,以便客户端只能读取它,但不能写入它?

发布于 2024-08-07 22:43:31 字数 322 浏览 5 评论 0原文

假设我有一个 C# 类:

class Foo
{
    private List<Bar> _barList;
    List<Bar> GetBarList() { return _barList; }
...
}

客户端可以调用它:

var barList = foo.GetBarList();
barList.Add( ... );

是否有办法使 Add 方法因仅返回 _barList 的只读版本而失败?

Let's say I have a C# class:

class Foo
{
    private List<Bar> _barList;
    List<Bar> GetBarList() { return _barList; }
...
}

A client can call it:

var barList = foo.GetBarList();
barList.Add( ... );

Is there a way to make the Add method fail because only a read-only version of _barList is returned?

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

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

发布评论

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

评论(2

画骨成沙 2024-08-14 22:43:31

是的,在 GetBarList() 中返回 _barList.AsReadOnly()

编辑:
正如 Michael 在下面指出的,您的方法必须返回一个 IList

Yes, in GetBarList() return _barList.AsReadOnly().

Edit:
As Michael pointed out below, your method would have to return an IList<Bar>.

转身泪倾城 2024-08-14 22:43:31

您可以尝试使用ReadOnlyCollection。或者从您的方法中仅返回 IEnumerable,客户端将没有方法来修改它。

You may try to use ReadOnlyCollection. Or return just IEnumerable from your method, clients will not have methods to modify it.

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