所有 Visual Studio C# 编译指示名称是什么?
在 C++ 中,有一个 #pragma 可以输出到构建日志。 是否存在适用于 Visual Studio 2005 C# 的工具? 并且,有谁知道在哪里可以找到所有 #pragma 名称的实际列表?
In C++, there was a #pragma to output to the build log. Does one exist for Visual Studio 2005 C# ? And, does anyone know where an actual list of all the #pragma names can be found?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据文档,编译器必须支持编译指示,并且目前仅支持两种:校验和和警告。
According to the docs, pragmas must be supported by the compiler, and only two are currently supported: checksum and warning.
msdn 上的此链接列出了所有 C# 预处理器指令并详细介绍关于如何使用它们。
C# 编译器仅支持
warning
和checksum
指令。This link on msdn lists all the C# preprocessor directives and goes into detail about how they are used.
Only
warning
andchecksum
are supported#pragma
instructions for the C# compiler.