c# – 无法将.Net ConcurrentDictionary转换为IReadOnlyDictionary接口?

前端之家收集整理的这篇文章主要介绍了c# – 无法将.Net ConcurrentDictionary转换为IReadOnlyDictionary接口?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须遗漏一些东西,觉得我必须回到基础,但是.Net 4.5中的ConcurrentDictionary according to the reference sources它实现了IReadOnlyDictionary接口(虽然有些成员明确地说),但由于某种原因我无法将实例强制转换为该接口 – 这是为什么?
IDictionary<int,string> a = new ConcurrentDictionary<int,string>(); // works
IReadOnlyDictionary<int,string> b = new ConcurrentDictionary<int,string>(); // does not work

.. 这是为什么?

为了使这一点更清楚:

解决方法

您可能使用.NET版本,其中此接口未由 ConcurrentDictionary实现.从我尝试过的版本不是由4.6之前的.NET版本实现的:
[SerializableAttribute]
[ComVisibleAttribute(false)]
[HostProtectionAttribute(SecurityAction.LinkDemand,Synchronization = true,ExternalThreading = true)]
public class ConcurrentDictionary<TKey,TValue> : IDictionary<TKey,TValue>,ICollection<KeyValuePair<TKey,TValue>>,IEnumerable<KeyValuePair<TKey,IDictionary,ICollection,IEnumerable

在当前的.NET框架版本(4.6.2)中,ConcurrentDictionary实现了它:

[SerializableAttribute]
[ComVisibleAttribute(false)]
[HostProtectionAttribute(SecurityAction.LinkDemand, TValue>, TValue>>,IEnumerable,IReadOnlyDictionary<TKey,IReadOnlyCollection<KeyValuePair<TKey, TValue>>
原文链接:https://www.f2er.com/csharp/98411.html

猜你在找的C#相关文章