IL中有注释之类的东西吗?
我意识到没有人会坐下来直接用 IL 开发软件(是吗?)。但是假设您想与其他人共享一段 IL 代码(例如 C# 编译器的输出)以供讨论,并且您还想用一些注释对其进行注释。 IL 中是否有实际的注释语法,以便您可以在不使文本作为 IL 无效的情况下执行此操作?其实没什么大不了的,只是好奇而已。
I realize nobody just sits down and develops software in straight IL (do they?). But suppose you want to share a snippet of IL code (as output by, e.g., the C# compiler) with someone else for discussion, and furthermore you want to annotate it with a few comments. Is there an actual syntax for comments in IL so that you could do this without making the text invalid as IL? Not really a big deal, just curious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以像在 C# 中一样使用
//
和/* ... */
。我在 ECMA-335 中找不到任何对它的引用,但是这个 IL指南包括:
Yes, you can use
//
and/* ... */
just like in C#.I can't find any reference to it in ECMA-335, but this IL guide includes:
您也可以在 IL 中使用 // 进行注释...
you use // in IL for comments as well...