.NET Analog of Java Locale Variant: Does It Exist?

Are there localization mechanisms in .NET (out of the box) that support something like the Java language variant? Apart from language and country, I would like to have an option for, say, each user's domain. My users represent different domains and their vocabulary changes. I tried something like "en-US-domain1" but to no avail. I don't want to reinvent the wheel, if it exists.

I would be grateful for any ideas you may have.

+2


source to share


1 answer


You can create a custom one CultureInfo

( as described here ) and then localize your resource strings using that culture.



+4


source







All Articles