C# I18N - 是否可以在不创建 dll 的情况下包含语言资源文件?

发布于 2024-07-24 05:54:40 字数 153 浏览 3 评论 0原文

我正在努力转换一些现有代码以利用 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 技术交流群。

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

发布评论

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

评论(2

梦魇绽荼蘼 2024-07-31 05:54:40

我认为如果您想利用 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.

掀纱窥君容 2024-07-31 05:54:40

可以将所有国际化资源打包在主程序集中,但这可能会对您的版本控制策略产生影响。 您可以将 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.

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