开发者

Accessing resx file from another project / assembly

I have a resource file in a different project and want to access eg开发者_开发问答. strings from it. How can i do this?


Make your access modifier to public .

Accessing resx file from another project / assembly


This is a super old question, but since it has not been answered and I just stumbled upon this problem, here are some possible solutions:

Make sure that the access modifier of the resx is set to public!

Link to the resx file

See here

Then you either acces the string directly with

var translatedString = Resources.NAME_OF_THE_STRING_IN_RESX_FILE;

or via ResourceManager

var resourceManager = new ResourceManager("FULLY.QUALIFIED.NAMESPACE.NO.EXTENSION", Assembly.GetExecutingAssembly());
var translatedString = resourceManager.GetString("NAME_OF_THE_STRING_IN_RESX_FILE");

Direct access when you have a reference to the project

var translatedString = [FULLY.QUALIFIED.NAMESPACE.NO.EXTENSION].NAME_OF_THE_STRING_IN_RESX_FILE;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜