最佳答案
在 C # 中访问 布尔字段是原子的吗:
class Foo
{
private bool _bar;
//... in some function on any thread (or many threads)
_bar = true;
//... same for a read
if (_bar) { ... }
}