如何在Visual Studio中为不同的编译宏设置不同的资源?

发布于 2024-08-21 08:58:34 字数 93 浏览 5 评论 0原文

我有一个字符串资源,需要根据条件编译具有不同的值。

如何在 Visual Studio 2008 Professional 中为不同的编译宏设置不同的资源?

I have a String resource that needs to have different value based on the conditional compile.

How to setup different Resources for different compile macros in Visual Studio 2008 Professional?

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

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

发布评论

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

评论(1

羞稚 2024-08-28 08:58:34

没有可以做的。资源字符串以 XML 格式存储在 .resx 文件中,#ifdef 不适用。 Properties.Resources 类是自动生成的,重新生成文件时,您放入 Designer.cs 源代码文件中的任何 #ifdef 都将丢失。

将#ifdef 放入检索字符串的代码中。一个小的静态辅助方法就可以完成这项工作。

No can do. The resource string is stored in XML format in a .resx file, #ifdef doesn't apply. The Properties.Resources class is autogenerated, any #ifdef you put in the Designer.cs source code file will be lost when the file is re-generated.

Put the #ifdef in the code that retrieves the string. A small static helper method will do the job.

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