Name

Interlocked

Synopsis

The static members of this class provide thread safety for common built-in arithmetic operations, such as ++, --, and exchanging variables.

If two threads increment the same variable, one thread could be interrupted after both have retrieved the initial value of the variable. If this happens, then both operations store the same value, meaning that the variable has been incremented once instead of twice. The Interlocked methods protect against this kind of error. Increment() and Decrement() replace ++ and --, respectively, and Exchange() switches two variables. CompareExchange() compares the first two variables and, if true, assigns the third value to the first variable.

public sealed class Interlocked {
// Public Static Methods
   public static method int CompareExchange(ref int location1, 
        int value, int comparand);  
   public static method object CompareExchange(
        ref object location1, object value, 
        object comparand);  
   public static method float CompareExchange(
        ref float location1, float value, 
        float comparand);  
   public static method int Decrement(ref int location);  
   public static method long Decrement(ref long location);  
   public static method int Exchange(ref int location1, 
        int value);  
   public static method object Exchange(ref object location1, 
        object value);  
   public static method float Exchange(ref float location1, 
        float value);  
   public static method int Increment(ref int location);  
   public static method long Increment(ref long location);  
}

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.