class Foo
{
static bool Bar(Stream^ stream);
};
class FooWrapper
{
bool Bar(LPCWSTR szUnicodeString)
{
return Foo::Bar(??);
}
};
MemoryStream will take a byte[] but I'd like to do this without copying the data if possible.
|
|
MemoryStream will take a byte[] but I'd like to do this without copying the data if possible.
|
|||
|
|
|
|
You can avoid the copy if you use an UnmanagedMemoryStream() instead (class exists in .NET FCL 2.0 and later). Like MemoryStream, it is a subclass of IO.Stream, and has all the usual stream operations. Microsoft's description of the class is:
...which pretty much tells you what you need to know. Note that UnmanagedMemoryStream() is not CLS-compliant. |
||
|
|
|
|
If I had to copy the memory, I think the following would work:
|
||
|
|