Hacker News new | ask | show | jobs
by pornel 2531 days ago
Rust protects from data races. AFAIK C# will not tell you where you need to put mutexes.
1 comments

Yes, it's quite possible to cause tearing in C#. It does not cause undefined behavior, but it can, for example, break invariants (supposedly enforced by privacy) in large enough structs.

See this example where I break encapsulation in a struct by abusing a race condition:

https://github.com/VictorGavrish/MultiThreading/blob/master/...