vote up 1 vote down star

I have yet another managed C++ KeyValuePair question where I know what to do in C#, but am having a hard time translating to managed C++. Here is the code that does what I want to do in C#:

KeyValuePair<String, String> KVP = new KeyValuePair<string, string>("this", "that");

I've reflected it into MC++ and get this:

KeyValuePair<String __gc*, String __gc*> __gc* KVP = (S"this", S"that");

which I'm translating to:

KeyValuePair<String ^, String ^> KVP = (gcnew String("this"), gcnew String("that"));

I know from my previous question that KeyValuePair is a value type; is the problem that it's a value type in C++ and a reference type in C#? Can anyone tell me how to set the key and value of a KeyValuePair from C++?

flag

2 Answers

vote up 1 vote down check

This should do it:

KeyValuePair< String ^, String ^> k(gcnew String("Foo"), gcnew String("Bar"));

KeyValuePair is an immutable type, so you have to pass everything to the constructor, which looks the same as in C#, except you write it like this if the object is on the stack.

link|flag
KeyValuPair is not an immutable type. – Aaron Fischer Dec 5 '08 at 16:22
This also worked, but I couldn't accept both so I voted you both up. – brian Dec 5 '08 at 16:36
Actually, it is immutable. Here's a post by the designer explaining why connect.microsoft.com/VisualStudio/feedback/… – thealliedhacker Dec 5 '08 at 22:08
Switched to this as best answer because of the immutable citation – brian Dec 8 '08 at 15:35
vote up 1 vote down

try

System::Collections::Generic::KeyValuePair< System::String^, System::String^>^ k = gcnew System::Collections::Generic::KeyValuePair< System::String^, System::String^>(gcnew System::String("foo") ,gcnew System::String("bar"))   ;
link|flag
This worked, but I'm confused as to why. Is KeyValuePair a value type? – brian Dec 5 '08 at 16:35

Your Answer

Get an OpenID
or

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