While going through some database code looking for a bug unrelated to this question, I noticed that in some places List was being used inappropriately. Specifically:
- There were many threads concurrently accessing the List as readers, but using indexes into the list instead of enumerators.
- There was a single writer to the list.
- There was zero synchronization, readers and writers were accessing the list at the same time, but because of code structure the last element would never be accessed until the method that executed the .Add() returned.
- No elements were ever removed from the list.
By the C# documentation, this should not be thread safe. Yet it has never failed. I am wondering, because of the specific implementation of the List (I am assuming internally it's an array that re-allocs when it runs out of space), it the 1-writer 0-enumerator n-reader add-only scenario "accidentally" thread safe, or is there some unlikely scenario where this could blow up in the current .NET4 implementation?
edit: Important detail I left out reading some of the replies. The readers treat the List and its contents as read-only.