2

有没有办法将一个转换Array<unsigned char>^为一个IBuffer^?我想做的就是在 c# (WinRT) 到 c++/CX

Byte[] somebytes = GetBytes();
using (var stream = new InMemoryRandomAccessStream())
{
    await stream.WriteAsync(somebytes.AsBuffer());
    ....
    DoSomeOtherStuff();
}

.AsBuffer()我在 c++/cx 中找不到/使用“魔术”扩展方法。

有没有其他方法可以在 c++/cx 中实现 .AsBuffer 功能?

4

0 回答 0