Is the System.Resources.Resourcemanager thread-safe?

676 Views Asked by At

My web application, when users login using different culture, is rendering it's content partially in incorrect culture.

This Asp.net web application caches the ResourceManager in the HttpContext.Current.Cache. The Resourcemanager GetString is internally using a Hashtable to store/ retrieve the resource strings.

How thread-safe is the ResourceManager?

1

There are 1 best solutions below

2
On

According to MSDN, it is thread safe.

The MSDN documentation is a great source for information and generally covers most questions. I'd suggest looking there first, next time. They're usually the first hit when Googling.

You can always add site:learn.microsoft.com to the query :)