CLR 4.0 中引入了哪些操作码?
与 3.5 相比,.NET 4.0 中是否有新增的 IL 操作码?如果有,在哪里可以找到它们的列表?
Are there any IL opcodes that are new in .NET 4.0 as compared to 3.5, and if so, where can I find a list of them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与 3.5 版相比,4.0 版中没有新的操作码。
There are no new OpCodes in version 4.0 compared to version 3.5.
您可以比较 System.Reflection.Emit 的字段。操作码从V2到V4。
You could compare the fields of System.Reflection.Emit.OpCodes from V2 to V4.