I Have around say 6 dll’s ( No source code ).
They do not contain any Logic but just a .resx file that contains a string table.
Is there a way where I can extract the Id’s and values from the string table from each of these dll’s and Export it to a text file?
Knowing the assembly name and the resource file, you can load it using reflection.
To list all Keys and Values you can use the
ResourceSetIf you don’t have access to the resources lib, you can see what are the namespaces, classes, and everything else through Reflector as mentioned by Leo.