来自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
公开的只读字典?