System.IO.UnmanagedMemoryStream - 为什么使用 Byte* 而不是 IntPtr

发布于 2024-08-17 15:27:16 字数 127 浏览 9 评论 0原文

有人知道为什么 BCL 团队选择在 UnmanagedMemoryStream 的构造函数中使用 Byte* 而不是 IntPtr 吗?这迫使您使用不安全的上下文来构造类型。看起来他们可以使用 IntPtr 并且不会强制使用不安全的上下文。

Anybody have any idea why the BCL team chose to use Byte* instead of IntPtr in the constructors for UnmanagedMemoryStream? This forces you into using an unsafe context in order to construct the type. It seems like they could have used IntPtr and that wouldn't have forced the unsafe context.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弃爱 2024-08-24 15:27:16

我猜是因为这样更安全。如果他们使用 IntPtr,则可以使用任何垃圾值调用构造函数。对于 byte* ,编译器至少可以验证内存是否有效并固定。尽管将 IntPtr 转换为 byte* 非常简单。

I'd guess because it is safer. If they would have used IntPtr, the constructor could be called with any garbage value. With byte* there's at least a shot at the compiler verifying that the memory is valid and pinned. Albeit that casting an IntPtr to byte* is pretty simple.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文