2

Are there localisation mechanisms available under .NET (out of the box) that support something like Java's locale's variant? Beside the language and country I would like to be able to have a variant, say, per users' domain. My users represent various domains and their vocabulary varies. I was trying something like "en-US-domain1", but to no avail. I do not want to reinvent the wheel, if one exists.

I would be grateful for any insights you might have.

Serge Wautier
  • 21,494
  • 13
  • 69
  • 110
mr.sverrir
  • 414
  • 4
  • 12

1 Answers1

4

You can create a custom CultureInfo (as described here) and then have resource strings localized using that culture.

Community
  • 1
  • 1
Fredrik Mörk
  • 155,851
  • 29
  • 291
  • 343