Access resx in application from Silverlight class library
问题 Resource files in Silverlight can be accessed using the code below: ResourceManager rm = new ResourceManager("MyLibraryNamespace.MyFolder.MyResources", Assembly.GetExecutingAssembly()); However in my application this piece of code is not in the application itself, but in a Silverlight class library and the app has reference to it; changing the namespace to the "MyAppNamespace" just generates error. How can I reach the resources in the xap file from the Silverlight class library? 回答1: There is