Advertisement
Guest User

Threadsafe Singleton

a guest
Feb 26th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. public void InitNavigationTreeCache()
  2. {
  3.     if (NavigationCache == null)
  4.     {
  5.         lock (LockObject)
  6.         {
  7.             NavigationCache = new Cache("cachekey", "50MB", GetCacheAction);
  8.         }
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement