ot;myGuid"] = myGuid;
content["myNull"] = null;
//
// Construct a message with the map content and send it
synchronously
// via the sender.
//
Message message = new Message(content);
sender.Send(message, true);
ay, October 23, 2012 12:40:50 AM
> Subject: How would you receive this C++ List in C#
>
> Hi , I have something like this in my C++ program
>
> qpid::types::Variant::Map content;
> content["keyA"] = "ValA";
> content["KeyB"] = "V
Hi , I have something like this in my C++ program
qpid::types::Variant::Map content;
content["keyA"] = "ValA";
content["KeyB"] = "ValB"
qpid::types::Variant::List object;
object.push_back(content);
encode(object,message);
sender_.send(message);
Now in my C# I have so