Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
}
share|improve this question
You will need to better document your question if you want help with this. At a minimum a repro project and explicit repro steps. – Hans Passant Nov 28 '10 at 14:48
Ok.. Just copy paste the added code to your debugger please if u can help – mustafabar Nov 29 '10 at 6:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.