将Array <unsigned char =“”> ^转换为IBuffer </unsigned>

时间:2013-04-15 13:23:50

标签: c++ windows-runtime c++-cx

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

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

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

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

0 个答案:

没有答案