Ejemplo n.º 1
0
 internal static void Clear <TKey, TValue>(this SnapDictionary <TKey, TValue> d, TKey key)
     where TValue : class
 {
     using (d.GetScopedWriteLock(GetScopeProvider()))
     {
         d.ClearLocked(key);
     }
 }