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) { ... }
しかし、これを書いていると、コンパイルに失敗したというメッセージと次の説明が表示されます。
タイプまたはネームスペース名Dictionary2' が見つかりませんでした。
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