In .NET, How do I separate xml from compiled resource file?

We have a customer that would like to modify application user messages that we store in .resx files. I'm thinking this can't be done since the xml file behind the .resx is embedded in a compiled dll. Am I correct? Or, is there a way keep the xml outside of the compiled dll? I realize this can easily be done by other means but I like the ease of the resx file--the classes/properties are created for you.


You are correct. Anything is possible of course, but it won't be nearly as convenient or easy to maintain. It doesn't sound like a satellite assembly would fly here. An application setting is about the easiest. A good way to keep requests like these at bay is to quote an accurate price that includes the hassle of maintaining this for the next N years.

链接地址: http://www.djcxy.com/p/66636.html

上一篇: 如何找到正在使用的实际语言文件?

下一篇: 在.NET中,如何将xml与已编译的资源文件分开?