0

我想要一个带有参数的方法

public int MyMethod(Dictionary<int, Dictionary<int,int>> myDict)
{
 ...
}

但是在写这篇文章时,我收到编译失败的消息和以下解释:

Dictionary找不到类型或命名空间名称2'。

我该如何解决这个问题?

4

1 回答 1

1

确保包含using System.Collections.Generic;在文件的顶部。或者,您可以在代码中使用完整的命名空间:

public int MyMethod(System.Collections.Generic.Dictionary<int, System.Collections.Generic.Dictionary<int,int>> myDict)
{

}

(但我想我们都可以从中看出该using指令更好一些)

于 2013-04-06T21:34:02.940 回答