如何在Visual Studio中为不同的编译宏设置不同的资源?
我有一个字符串资源,需要根据条件编译具有不同的值。
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有可以做的。资源字符串以 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.