私は c++/cli に慣れてきました。LocatorというクラスでLocateという関数を書いています。文字列の辞書を入力する関数。
Dictionary<String^, array< Byte >^>^ Locate(Dictionary<String^, String^>^ imgParms)
これを行うことにより、メイン関数でそれを呼び出そうとしています:
Locator r;
Dictionary<String^,String^> myDictionary =
gcnew Dictionary<String^,String^>();
r.Locate(myDictionary);
しかし、私はこのエラーが発生しています
error C3073: 'System::Collections::Generic::Dictionary<TKey,TValue>' : ref class does
not have a user-defined copy constructor with
[
TKey=System::String ^,
TValue=System::String ^
]
どんな助けでも大歓迎です。