Is MemoryCache.Set() thread-safe?

Viewed 19086

The MSDN documentation for MemoryCache.Set unfortunately doesn’t state explicitly whether it is thread-safe or not.

Is it safe to use .Get() and .Set() from several threads without an explicit lock?

2 Answers
Related