This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ConcurrentList<T> : IList<T>, IDisposable | |
{ | |
private ReaderWriterLockSlim _lock = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion); | |
private int _count = 0; | |
public int Count | |
{ | |
get | |
{ | |
_lock.EnterReadLock(); |