C# and Threading: Explicit Synchronization isn't Always Needed

from blog nickb.dev, | ↗ original
What if you had one single threaded writer updating a variable while there were many concurrent threads reading it, what kind of threading issues would you run into? The answer is none if you don’t mind the reader threads returning millisecond stale data. Scenario: When a file changes, a class reads the contents of the new file and updates a...