votes
List<T>.Add is not guaranteed to be thread-safe
.Add is an instance method. That means it's not guaranteed to be thread-safe. What does this mean? Possibility 1. That if two threads invoke .Add on different instances, there could be an unexpected result depending on the phase of ...
