You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry, I have no idea about best practice for C++'s implementation for std:vector<SomeType>.
In general, it is more important that what actual serialized binary is.
I guess that the C++ implementation serializes the vector<T> as array of sometype, so it should be deserialized as List<sometype>. It is possible that this is caused by the declaration of the sometype.
Could you put the code of:
Sample deserialization code that you ran.
Sample serialized binary (such as HEX format string)
Is there a recommended way to deserialize (in c#) a message pack object packed in c++ containing a
std::vector<sometype>
?I tried
public List<sometype>
but that doesn't seem to be workingThe text was updated successfully, but these errors were encountered: