multiple language support in C#

  • Thread starter Thread starter Lonewolf
  • Start date Start date
L

Lonewolf

Hi all,
in VC6, it was possible to mix multiple lang within the same project
using different resource file adn resource only DLL, with Loadstring to
change the UI string on the fly. I don't know what is the .NET way of
doing that. Could someone please enlighten me on this?
 
Lonewolf said:
in VC6, it was possible to mix multiple lang within the same project
using different resource file adn resource only DLL, with Loadstring to
change the UI string on the fly. I don't know what is the .NET way of
doing that. Could someone please enlighten me on this?

The class you're interested in is ResourceManager - have a look on MSDN
for the description. If you google for
ResourceManager tutorial .net
you should find plenty of helpful hits.

Jon
 
Jon said:
The class you're interested in is ResourceManager - have a look on MSDN
for the description. If you google for
ResourceManager tutorial .net
you should find plenty of helpful hits.

Jon

I will look into that, thank you so much for enlightening me :D
 
Back
Top