C# I18N - 是否可以在不创建 dll 的情况下包含语言资源文件?
我正在努力转换一些现有代码以利用 VS.Net 2005 中的国际化工具。如果可能的话,我被要求在不创建任何其他 dll 的情况下执行此操作。 我尝试了一些不同的方法并四处搜索,但我不确定这是否可以做到,所以我想我会问你们。
有任何想法吗?
谢谢!
I'm working on converting some exiting code to take advantage of the Internationalisation tools in VS.Net 2005. I've been asked to do this without creating any additional dlls if at all possible. I've tried a few different things and searched around, but I'm not sure if this can be done, so I thought I'd ask you guys.
Any ideas?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为如果您想利用 VS.NET 中的 i18n 工具,那么您将必须使用多个程序集(每种文化一个)。 但是,您可以使用 ILMerge 合并这些程序集进行部署。
我不知道这是否有效,但至少它可以为你提供另一条研究途径。
I think that if you want to take advantage of the i18n tools in VS.NET then you will have to use multiple assemblies (one for each culture). However, you may be able to merge these assemblies using ILMerge for deployment.
I don't know if this will work, but at least it may give you another path to research.
可以将所有国际化资源打包在主程序集中,但这可能会对您的版本控制策略产生影响。 您可以将
ResourceManager
构造函数指向任何程序集,包括当前正在执行的。It is possible to package all your internationalization resources in your main assembly, but this may have repurcussions for your versioning strategy. You can point the
ResourceManager
constructor at any assembly, including the currently executing one.