是否有 CLR 版本的 ac# 预编译器定义

发布于 2024-08-14 16:15:21 字数 155 浏览 5 评论 0原文

我需要根据 CLR 版本有条件地编译代码。
例如,有一段代码我需要仅在 CLR 2 (.NET 3.5 VS2008) 中编译,而不是在 CLR 4 (.NET 4 VS2010) 中编译
当前 CLR 版本是否有可以在 #if 子句中使用的预编译器指令?

谢谢。

I need to compile code conditionally by the CLR version.
e.g there's a code that I need to compile only in CLR 2 (.NET 3.5 VS2008) and not in CLR 4 (.NET 4 VS2010)
Is there a precompiler directive for the current CLR version that I can use inside an #if clause?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

旧情勿念 2024-08-21 16:15:21

据我所知,情况并非如此。

尝试使用您自己的,例如:

#if CLR_V2
  #if CLR_V4
    #error You can't define CLR_V2 and CLR_V4 at the same time
  #endif

  code for clr 2

#elif CLR_V4

  code for clr 4

#else
  #error Define either CLR_V2 or CLR_V4 to compile
#endif

然后您可以在 Visual Studio 的项目属性窗口或 csc 命令行参数中定义 CLR_V2 和/或 CLR_V4。

Not as I know.

try use your own one, such like:

#if CLR_V2
  #if CLR_V4
    #error You can't define CLR_V2 and CLR_V4 at the same time
  #endif

  code for clr 2

#elif CLR_V4

  code for clr 4

#else
  #error Define either CLR_V2 or CLR_V4 to compile
#endif

And then you can define CLR_V2 and/or CLR_V4 in project properties window of Visual Studio, or csc command line arguments.

只有一腔孤勇 2024-08-21 16:15:21

您始终可以在 MSBuild 脚本中添加一些内容来检查 CLR 版本,然后有条件地定义预处理器符号并将其传递给编译器,该编译器可以使用 #if 在代码内进行测试。

You could always add something to your MSBuild script that checks the CLR version, then conditionally defines and passes in a preprocessor symbol to the compiler that can be tested inside the code with an #if.

败给现实 2024-08-21 16:15:21

是的,有条件编译指令,它们看起来只是就像 C 预处理器的东西

编辑:完全误读了这个问题 - 休息一下的时间

Yes there are conditional compilation directives they look just like C preprocessor stuff

edit: completely misread that question - time for a break

深海夜未眠 2024-08-21 16:15:21

根据此处,答案是。然而,我们使用的一个技巧是将版本特定的代码放入运行时加载的程序集中。然后,您可以通过 获取运行时 CLR 的版本System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()。

版本特定的代码是使用 C#3.5 及以上版本中提供的目标工具进行编译的。

According to here the answer is no. However one trick we use is to put the version specific code into assemblies that are loaded at runtime. You can then get the version of the CLR at runtime by System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory().

The version specific code is compiled using the targeting facility available from the C#3.5 onwards.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文