I have an object that extends the IDictionary interface namely a "SafeDictionary". When I pause the debugger and point the mouse at the object to see its contents the debugger stops. Any idea how to overcome that?
to replicate this issue just copy paste the following code, and point at the safeDictionary object when the debugger breaks. Move the mouse away, and the debugger will stop
class Program
{
static void Main(string[] args)
{
SafeDictionary<string, int> safeDictionary = new SafeDictionary<string, int>();
safeDictionary.Add("aaa", 1);
safeDictionary.Add("bbb", 2);
System.Diagnostics.Debugger.Break();
}
}
public class SafeDictionary<TKey, TValue> : IDictionary<TKey, TValue>
{
private Dictionary<TKey, TValue> _innerCache = new Dictionary<TKey, TValue>();
private ReaderWriterLockSlim _lock = new ReaderWriterLockSlim();
public bool Set;
#region IDictionary<TKey,TValue> Members
public Dictionary<TKey, TValue> GetUnsafeDictionary()
{
return _innerCache;
}
public void Add(TKey key, TValue value)
{
TryAddValue(key, value);
}
public bool TryAddValue(TKey key, TValue value)
{
if (key == null || value == null)
throw new ArgumentNullException();
if (!ContainsKey(key))
{
_lock.EnterWriteLock();
try
{
_innerCache.Add(key, value);
return true;
}
finally
{
_lock.ExitWriteLock();
}
}
else return false;
}
public bool ContainsKey(TKey key)
{
bool keyExists;
_lock.EnterReadLock();
try
{
keyExists = _innerCache.ContainsKey(key);
return keyExists;
}
finally
{
_lock.ExitReadLock();
}
}
public ICollection<TKey> Keys
{
get
{
_lock.EnterReadLock();
try
{
return _innerCache.Keys;
}
finally
{
_lock.ExitReadLock();
}
}
}
public bool Remove(TKey key)
{
_lock.EnterWriteLock();
try
{
return _innerCache.Remove(key);
}
finally
{
_lock.ExitWriteLock();
}
}
public bool TryGetValue(TKey key, out TValue value)
{
_lock.EnterReadLock();
try
{
return _innerCache.TryGetValue(key, out value);
}
finally
{
_lock.ExitReadLock();
}
}
public ICollection<TValue> Values
{
get
{
_lock.EnterReadLock();
try
{
return _innerCache.Values;
}
finally
{
_lock.ExitReadLock();
}
}
}
public TValue this[TKey key]
{
get
{
_lock.EnterReadLock();
try
{
return _innerCache[key];
}
finally
{
_lock.ExitReadLock();
}
}
set
{
_lock.EnterWriteLock();
try
{
_innerCache[key] = value;
}
finally
{
_lock.ExitWriteLock();
}
}
}
#endregion
#region ICollection<KeyValuePair<TKey,TValue>> Members
public void Add(KeyValuePair<TKey, TValue> item)
{
TryAddValue(item.Key, item.Value);
}
public void Clear()
{
_lock.EnterWriteLock();
try
{
_innerCache.Clear();
}
finally
{
_lock.ExitWriteLock();
}
}
public bool Contains(KeyValuePair<TKey, TValue> item)
{
// throw new NotImplementedException();
return false;
}
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
{
throw new NotImplementedException();
}
public int Count
{
get
{
_lock.EnterReadLock();
try
{
return _innerCache.Keys.Count;
}
finally
{
_lock.ExitReadLock();
}
}
}
public bool IsReadOnly
{
get
{
return IsReadOnly;
}
}
public bool Remove(KeyValuePair<TKey, TValue> item)
{
return Remove(item.Key);
}
#endregion
#region IEnumerable<KeyValuePair<TKey,TValue>> Members
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
return _innerCache.GetEnumerator();
}
#endregion
#region IEnumerable Members
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return _innerCache.GetEnumerator();
}
#endregion
}