c# - 为什么我的 Dictionary 类看不到 ToArray() 方法?

发布于 2024-08-07 19:08:21 字数 144 浏览 5 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烦人精 2024-08-14 19:08:22

Dictonary 类实际上没有 .ToArray 方法。有一个名为 .ToArray 的扩展方法,它可以绑定到 Dictionary。但这要求 System.Linq 成为您的用途之一。

您是否已验证 System.Linq 已导入?

例子:

using System.Linq;
...
public void Example() {
  var map = new Dictionary<string,string>();
  ..
  var arr = map.ToArray();
}

The Dictonary<TKey,TValue> class does not actually have a .ToArray method. There is an extension method called .ToArray which can bind to Dictionary<TKey,TValue>. But this requires that System.Linq be one of your usings.

Have you verified that System.Linq is imported?

Example:

using System.Linq;
...
public void Example() {
  var map = new Dictionary<string,string>();
  ..
  var arr = map.ToArray();
}
秋凉 2024-08-14 19:08:22

您的目标可能是 .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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文