OmegaMan wrote: | |
|
Reference assignments and built-in type assignments are guarenteed in the C# spec to be atomic; there's no need to synchronize them (you're simply adding overhead that isn't being used).
If you've got an invariant that you need to protect (i.e. you shouldn't set Foo during some other state), then you need to address that outside of the Foo property.