56
A comparison of Rust's borrow checker to the one in C#
(em-tg.github.io)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
It's a very different kind of borrow checking than Rust's. For example there's no mutability xor sharing checking, because mutability cannot invalidate memory (there's still a GC in C# after all!). As such, Rust's NLL (which are available in the 2015 edition too btw) don't really make sense in C#.