ibuffer字节[]。asbuffer扩展方法在哪里?
在构建过程中,他们提到要获取 IBuffer,字节数组上有一个名为 AsBuffer() 的扩展方法。不幸的是,他们没有提到它隐藏在哪个命名空间中,并且似乎不在我添加的许多命名空间中。有人找到它藏在哪里了吗?
During build they mentioned that to get an IBuffer, there's an extension method on byte arrays called AsBuffer(). Unfortunately they didn't mention what namespace it's hiding in, and doesn't seem to be in the many I've added. Has anyone found where it's hiding at?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命名空间为 System.Runtime.InteropServices.WindowsRuntime。
VS 对象浏览器是你的朋友 - 只要确保相应地设置框架切换器即可。对于 Metro 应用程序中可用的 .NET 库,您需要“.NET Framework Core 4.5”。
The namespace is
System.Runtime.InteropServices.WindowsRuntime
.VS Object Browser is your friend here - just be sure to set the framework switcher accordingly. For .NET libraries available in Metro apps, you want ".NET Framework Core 4.5".