G
Guest
Hi,
I have an unmanaged iostream type that I need to copy to MemoryStream
(managed). Will appreciate if somebody can provide me the best/fastest
approach. This is what I have.
std::iostream *pStream = getStream();
//I need to copy the data pointed by pStream to MemoryStream
System::IO::MemoryStream ^mStream = gcnew System::IO::MemoryStream()
Thanks for the help.
I have an unmanaged iostream type that I need to copy to MemoryStream
(managed). Will appreciate if somebody can provide me the best/fastest
approach. This is what I have.
std::iostream *pStream = getStream();
//I need to copy the data pointed by pStream to MemoryStream
System::IO::MemoryStream ^mStream = gcnew System::IO::MemoryStream()
Thanks for the help.