Mono:Object 类中的非标准公共方法
有谁知道.Net对象类Mono实现中的“obj_address”公共方法是什么?
谢谢你,
迈克尔
Does anybody know what is the "obj_address" public method in .Net Object class Mono implementation?
Thank you,
Michael
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它返回固定对象的地址。
它是 Mono 内部的,所以你真的不应该依赖它。我们保留将其删除并随意调整的权利。
It returns the address of a pinned object.
It is internal to Mono, so you really should not depend on it. We reserve the right to remove it and shuffle it around at will.
Kornél Pál 提交了一个补丁,将其重命名为
UnsafeAddrOfPinnedObject 这会更具描述性。我还没有仔细研究过他的重命名是否有意义。更名未被接受。
Kornél Pál submitted a patch that renamed it to
UnsafeAddrOfPinnedObject
which would be a lot more descriptive. I haven't dug around to see if his rename makes sense. The rename was not accepted.