如何在不使用“我的”的情况下访问嵌入式资源在 VB.NET 中?
我在我的 codedom 项目中添加了一些资源,但我不知道如何访问这些资源? “我的”关键字不可用并且不起作用:
My.Resources.blabla.ToString
如何在不使用“我的”关键字的情况下访问我的资源?
泰
I added some resources in my codedom project but I have no Idea how to access the resources? the "My" Keyword is not available and it doesn't work:
My.Resources.blabla.ToString
How can I access my resources without the using of "My" keyword?
TY
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于
My
命名空间中的任何内容,您可以右键单击术语(例如blabla
)并选择转到定义。它将向您显示My
命名空间后面的代码,或者引导您到将显示完整类名的对象引用。根据您的情况,您可以重写此名称空间以满足您的目的。
With anything in the
My
namespace, you can right-click a term (such asblabla
) and select Go to Definition. It will either show you the code behind theMy
namespace, or direct you to the object reference which will show the full class name.In your case, you can rewrite this namespace to suit your purpose.