I have an assembly which contains, among other things, a Messages.resx which contains strings of GUI messages such as Yes, No, OK, Cancel, Open, etc. My project references this assembly. How can I use them?
I have an assembly which contains, among other things, a Messages.resx which contains strings
Share
In the resource editor just mark the resources as
public. By default the access modifier isinternal. Then you can use it normally.If making it public is not an option then use
InternalsVisibleToassembly level attribute.