.NET Micro Framework 不安全代码
.NET Micro Framework 是否支持不安全代码?换句话说,我可以在 .NET Micro Framework 的代码中使用指针吗?
Does .NET Micro Framework support unsafe code? In other words, can I use pointers in my code for .NET Micro Framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自维基百科页面(强调我的):
技术白皮书在省略的功能中列出了它也。
From the Wikipedia page (emphasis mine):
The technical white paper lists it in the omitted features too.
虽然官方不支持,但我个人在 NETMF 4.2 中使用和测试了不安全代码,发现它按预期工作。
另一位开发人员提供了在 NETMF 上实现
BitConverter
类的示例代码:http://forums.netduino.com/index.php?/topic/308-bitconverter/
Although officially not supported, I have personally used and tested unsafe code in NETMF 4.2 and find that it works as expected.
Another developer provides sample code for implementing a
BitConverter
class on NETMF doing just this:http://forums.netduino.com/index.php?/topic/308-bitconverter/