c# - 为什么我的 Dictionary 类看不到 ToArray() 方法?
我在 API Dictionary 中看到有一个 ToArray() 方法(在扩展类区域中),但是当我尝试从我的 Dictionary 实例中使用它时,它看不到它???
如何为我的 Dictionary 实例“启用”ToArray()?
谢谢
I see in the API Dictionary has a ToArray() method (in the extension classes area), but when I try to use this from my Dictionary instance it can't see it???
How do I "enable" ToArray() for my Dictionary instance?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Dictonary
类实际上没有.ToArray
方法。有一个名为.ToArray
的扩展方法,它可以绑定到Dictionary
。但这要求 System.Linq 成为您的用途之一。您是否已验证 System.Linq 已导入?
例子:
The
Dictonary<TKey,TValue>
class does not actually have a.ToArray
method. There is an extension method called.ToArray
which can bind toDictionary<TKey,TValue>
. But this requires that System.Linq be one of your usings.Have you verified that System.Linq is imported?
Example:
您的目标可能是 .NET 2.0,它不支持扩展方法。尝试将您的应用程序更改为目标 .Net 3.5
You're probably targeting .NET 2.0, which doesn't support Extension methods. Try changing your application to target .Net 3.5