User-1896913385 posted
I have all the language specific strings for my .NET 4.0 web application in RESX files in the App_GlobalResources folder.
Right now, when I retrieve a localized string value from a RESX file, I store it in HttpRuntime.Cache so I won't have to access the RESX file again and again for every single label and literal text etc.
But is that actually necessary? Or does ResourceManager also already cache things?