The volatile
keyword prevents data races on the field. Although the accesses to these fields are thread-safe, operations such as ++
, +=
, and similar are not atomic and lead therefore to race conditions.
Use a proper atomic operation of the System.Threading.Interlocked
class, such as Interlocked.Increment(...)
.