Re: How would you receive this C++ List in C#

2012-10-23 Thread Chuck Rolke
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);

Re: How would you receive this C++ List in C#

2012-10-22 Thread Pavel Moravec
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

How would you receive this C++ List in C#

2012-10-22 Thread Rajesh Khan
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