您可以使用框架版本来控制要编译的内容(在 C# 中)吗?
当针对 .NET 3.5 框架时,我需要从编译中排除一些代码,但当针对 2.0 时则不需要。 使用预处理器条件(#if/#endif)可以实现这一点吗? 或者也许还有其他方法。
哎呀,重复...关闭...
I need to exclude some code from the compilation when targeting the .NET 3.5 framework, but not when targeting 2.0. Is this possible using preprocessor conditions (#if/#endif)? Or maybe some other method.
Oops, duplicate.. closing...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下这里: C# 中取决于框架版本的条件编译
Take a look Here: Conditional compilation depending on the framework version in C#