Search Results

15
votes
16answers
2k views

Is accessing a variable in C# an atomic operation?

I've been raised to believe that if multiple threads can access a variable, then all reads from and writes to that variable must be protected by synchronization code, such as a "lock" statement, be …
0
votes

Is accessing a variable in C# an atomic operation?

@Keith The "Perform initialization" comment is standing in for all the config-reading, class-instantiating, and settings-setting that Membership does to initialize s_Provider, so I understand …
0
votes

Is accessing a variable in C# an atomic operation?

@John Richardson You're right. The real Membership class has that second check. I left it out because what I'm really interested in is whether the first call to s_Initialized, outside the loc …
4
votes

Is accessing a variable in C# an atomic operation?

The correct answer seems to be, "Yes, mostly." John's answer referencing the CLI spec indicates that accesses to variables not larger than 32 bits on a 32-bit processor are atomic. …
1
vote

Is accessing a variable in C# an atomic operation?

@Leon I see your point - the way I've asked, and then commented on, the question allows it to be taken in a couple of different ways. To be clear, I wanted to know if it was safe to h …