show/hide this revision's text 3 corrected spelling

"volatile" does not replace Interlocked.Increment! It just makes sure that the variable is not cached, but used directly.

Incrementing a variable requires actually three operationoperations:

  1. read
  2. increment
  3. write

Interlocked.Increment performs all three parts as a single atomic operation.

show/hide this revision's text 2 improved formatting

"volatile" volatile" does not replace Interlocked.Increment! It just makes sure that the variable is not cached, but used directly.

Incrementing a variable requires actually three operation:

  1. read
  2. increment
  3. write

Interlocked.Increment performs all three parts as a single atomic operation.

show/hide this revision's text 1

"volatile" does not replace Interlocked.Increment! It just makes sure that the variable is not cached, but used directly.

Incrementing a variable requires actually three operation:

  1. read
  2. increment
  3. write

Interlocked.Increment performs all three parts as a single atomic operation.