class Foo
{
static bool Bar(Stream^ stream);
};
class FooWrapper
{
bool Bar(LPCWSTR szUnicodeString)
{
return Foo::Bar(??);
}
};
MemoryStream
将采用byte[]
,但我喜欢这样做,而不会在可能的情况下复制数据。
答案 0 :(得分:7)
如果使用UnmanagedMemoryStream()
代替(.NET FCL 2.0及更高版本中存在类),则可以避免使用该副本。与MemoryStream
类似,它是IO.Stream
的子类,并且具有所有常用的流操作。
微软对该课程的描述是:
提供从托管代码访问非托管内存块的权限。
它几乎告诉你你需要知道什么。请注意,UnmanagedMemoryStream()
不符合CLS。
答案 1 :(得分:0)
如果我必须复制内存,我认为以下内容可行:
static Stream^ UnicodeStringToStream(LPCWSTR szUnicodeString)
{
//validate the input parameter
if (szUnicodeString == NULL)
{
return nullptr;
}
//get the length of the string
size_t lengthInWChars = wcslen(szUnicodeString);
size_t lengthInBytes = lengthInWChars * sizeof(wchar_t);
//allocate the .Net byte array
array^ byteArray = gcnew array(lengthInBytes);
//copy the unmanaged memory into the byte array
Marshal::Copy((IntPtr)(void*)szUnicodeString, byteArray, 0, lengthInBytes);
//create a memory stream from the byte array
return gcnew MemoryStream(byteArray);
}