Wondering if there is an existing ring buffer in .NET that has only one writer, but can have multiple consumers?
Needless to say, there are multiple threads reading from this buffer (but only one thread writing), so the implementation would have to be thread safe.
look at this article its really quite good http://www.albahari.com/threading/part5.aspx I would suggest you want the
BlockingCollection<T>