Hidden away in the System.Threading namespace is the class Interlocked. This class provides atomic operations on variables. The method System.Threading.Interlocked.CompareExchange is the .NET equivalent to the Compare and Swap primitive. It basically
Read More