.net - Obtain a ResourceManager for a static lib -


I have a managed C ++ project that is compiled as a lib and referenced by a windows form is. Exe In return, this Libil refers to a DLL that contains the localization code. The resource manager's creator expects that the assembly represents the parent of the object resource. How do I create a new resource manager that refers to resources stored in Lib Project?

Which is the version of VisualStudio you are using? VS2008 (C #) automatically creates a strongly typed wrapper class (using resgen.exe) around any resource linking to the project, please check whether it also works for C ++ / CLI.


Comments