Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个带有参数的方法
public int MyMethod(Dictionary<int, Dictionary<int,int>> myDict) { ... }
但是在写这篇文章时,我收到编译失败的消息和以下解释:
Dictionary找不到类型或命名空间名称2'。
Dictionary
我该如何解决这个问题?
确保包含using System.Collections.Generic;在文件的顶部。或者,您可以在代码中使用完整的命名空间:
using System.Collections.Generic;
public int MyMethod(System.Collections.Generic.Dictionary<int, System.Collections.Generic.Dictionary<int,int>> myDict) { }
(但我想我们都可以从中看出该using指令更好一些)
using