如何使用图书馆中的全球资源
我使用全局资源功能,不仅可以集中所有输出字符串,而且可以在使用本地化时变得简单(几乎 90% 的情况下)。
但我不仅将我的项目扩展到 ASP.NET 网站,还扩展到 2 个库项目。
我的问题是:
如何在这些库项目中使用 ASP.NET 全局资源文件?
就好像我对
Resources.MyFilename.MyResourceStringName
图书馆不了解 MyFilename
类
替代文本 http://www.balexandre.com/temp/2010-08-12_1307.png
在这种情况下我应该做什么?
I use the Global Resources feature, not only to centralize all my output strings but to make it easy when using Localization (witch is almost 90% of the time).
But I spread out my project into, not only the ASP.NET website, but with 2 Library projects as well.
my question is:
How can I use the ASP.NET Global Resource file in those Library projects?
as If I do
Resources.MyFilename.MyResourceStringName
the Library as no knowledge of the MyFilename
class
alt text http://www.balexandre.com/temp/2010-08-12_1307.png
What should I do in this cases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 ResourceManager 类来完成此任务。
MSDN 资源管理器
Your going to have to use the ResourceManager class to accomplish this.
MSDN Resource Manager