Sudheesh C R
Sudheesh C R

Reputation: 219

Editing of compiled resource file DLL's

I am globalizing my application to accommodate English and Norwegian language. So I have created two files named xx.resx file and xx.nb-NO.resx. After the compilation, I need to give this resource file DLL to someone who knows Norwaegian to edit. How can I achieve this ?

Upvotes: 0

Views: 135

Answers (1)

anon
anon

Reputation:

They don't need the dll, just send them the .resx file which is basically just XML they can edit. You'll then need to update and recompile your app/project when they send it back and update your dll or redeploy.

Upvotes: 1

Related Questions