从…起
msdn
:
表示键/值对的通用只读集合。
但是,请考虑以下事项:
class Test
{
public IReadOnlyDictionary<string, string> Dictionary { get; } = new Dictionary<string, string>
{
{ "1", "111" },
{ "2", "222" },
{ "3", "333" },
};
public IReadOnlyList<string> List { get; } =
(new List<string> { "1", "2", "3" }).AsReadOnly();
}
class Program
{
static void Main(string[] args)
{
var test = new Test();
var dictionary = (Dictionary<string, string>)test.Dictionary; // possible
dictionary.Add("4", "444"); // possible
dictionary.Remove("3"); // possible
var list = (List<string>)test.List; // impossible
list.Add("4"); // impossible
list.RemoveAt(0); // impossible
}
}
我很容易投
IReadOnlyDictionary
到
Dictionary
(任何人都可以)并改变它,同时
List
有漂亮的
AsReadOnly
方法
问题:如何正确使用
IReadOnlyDictionary(只读字典)
真正公开
只读的
词典