ASP.Net MVC将程序集中的资源与外部资源合并
本文关键字:资源 外部 合并 集中 程序集 Net MVC 程序 ASP | 更新日期: 2023-09-27 18:20:17
我有一个程序集,其中包含逻辑结构化的所有资源使用约定而非配置。
[My.Resources]
- [Controller]
- [View]
- Strings.resx
- Strings.fr.resx
- Strings.nl.resx
- [Controller]
- [View]
- Strings.resx
- Strings.fr.resx
- Strings.nl.resx
- [View]
- Strings.resx
- Strings.fr.resx
- Strings.nl.resx
...
我正在寻找一种自动合并外部资源的方法(自定义csv或resx文件)在运行时使用现有资源。最好使用专用文件夹从同一组件中取出。
谢谢你抽出时间!
您可以创建ResourceManager的实例,然后使用其CreateFileBasedResourceManager()方法从外部.resx文件中读取资源。