Guy
Guy

Reputation: 335

Moving form resource files to a resource dll

I want to move the localized resource files, created for my various winforms, to a resource dll. Is there an easy way to do it, that don't include manually reading every single string from the dll for each form, just like the forms usually handles it?

Upvotes: 1

Views: 1174

Answers (1)

Manvinder
Manvinder

Reputation: 4587

I don't think it'll be that difficult, you just have to create a new project of type class library and move your resource file to that project, when you build that project it'll create the dll and then you just need to refer this dll to your actual project and done.

Upvotes: 1

Related Questions