Thread-safety is much more than just "will this corrupt the data structure."
In the context of settings, there are three distinct meanings you need to consider. The settings data structure is safe in one of them, but not in the other two.
- Setting and reading individual values
- Setting and reading several values at the same time, getting or setting a consistent picture
- Adjusting a value by using its current value to calculate the new one before setting it back
In the first case, yes, the settings data structure is thread safe. You will not be able to write a half-Int64 into the settings and risking that another thread observes that half-way value.
However, if you're setting several values sequentially, you're not guaranteed another thread is not able to read all the settings between two such set-statements, observing one change, but not the other.
In other words, you can have this scenario:
Thread 1 Thread 2
set setting 1
read setting 1
read setting 2
set setting 2
And in the case of reading a value, calculating a new value from the value you read, and setting it back, there's no guarantee that another thread hasn't been able to do the same (ie. change the current value) in the meantime.
Like this:
Thread 1 Thread 2
read setting 1
read setting 1
calculate new value
write setting 1
calculate new value
write setting 1
For the latter two scenarios, you need an external synchronization object you can lock on to ensure you're not getting half-way changes, or losing changes, but then all code accessing the settings in this manner will need to lock on that object.
int current = Settings.Default.SomeIndex; current++; Settings.Default.SomeIndex = current; Settings.Default.Save();– Lasse V. Karlsen♦ Nov 20 '11 at 11:02