在 C# 中,方法是否可以返回 List,以便客户端只能读取它,但不能写入它?
假设我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,在
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>
.您可以尝试使用ReadOnlyCollection。或者从您的方法中仅返回 IEnumerable,客户端将没有方法来修改它。
You may try to use ReadOnlyCollection. Or return just IEnumerable from your method, clients will not have methods to modify it.