Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add my hashmap into ArrayList in vc++ 08. My code is below.

    typedef std::tr1::unordered_map< std::wstring, std::wstring > hashmap;    
          hashmap numbers;
        ArrayList^ myAL = gcnew ArrayList;

myAL->Add(numbers); // gives error...

But it gives error that

error C2664: 'System::Collections::ArrayList::Add' : cannot convert parameter 1 from 'hashmap' to 'System::Object ^'
1>        No user-defined-conversion operator available, or
1>        No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called

I tried for cast with object, but not succeeded. Can anyone help me to add hashmap in arraylist?

Thanks in advance...

share|improve this question

1 Answer

up vote 0 down vote accepted

The operation you're trying above doesn't work because managed and native types don't interoperate directly in that way.

I suggest Kenny Kerr's classic C++/CLI article Best Practices for Writing Efficient and Reliable Code with C++/CLI to figure out your specific interop scenario in more detail, but offhand I think what you want to do is embed a pointer to your native object in a managed object which you'll be able to add to your list structure. If you use Mr. Kerr's AutoPtr class (described in the article above and updated here), you should be able to create a managed class containing the AutoPtr as a member, which you can add to your ArrayList.

share|improve this answer
Thanks for answer, I've changed my program. And add some alternate way . – Never Quit Apr 19 '12 at 6:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.