rust-for-dotnet-devs icon indicating copy to clipboard operation
rust-for-dotnet-devs copied to clipboard

Rust for C#/.NET Developers

Results 18 rust-for-dotnet-devs issues
Sort by recently updated
recently updated
newest added

The book is awesome and very helpful for me, thus I would like to translate it to my native tongue (Chinese). I wonder if you are willing to add multi-lang...

There was a small missing example on the [nullability and optionality page](https://microsoft.github.io/rust-for-dotnet-devs/latest/language/nullability-and-optionality.html#control-flow-with-optionality), I went ahead and added it here.

- Fix typo in LINQ chapter - Fix copy paste mistake in Meta Programming chapter - Editorial improvements in Testing chapter

It looks like this is a simple typo, since it wouldn't make a lot of sense to represent y2 twice and y1 never. This correction brings the rust example to...

Hey there, @max-heller was a great help to `comprehensive-rust` and `rust-patterns` as they helped us set up rendering to PDF. `mdbook-pandoc` has some pre-rendered examples in also of Rust-by-example and...

This removes the (advanced) `.and_then` combinator in favor of [`std::fs::write`](https://doc.rust-lang.org/std/fs/fn.write.html). This seems more in line with the dotnet writealltext code and the `and_then` will probably confuse and overload the target...

Minor corrections to language, improving flow and clarity.

Closes #40. I also included struct update syntax, because I believe it _is_ parallel to `with` expressions, but I can remove it if requested. Best reviewed commit-by-commit.

- [ ] 1. In chapter 2.2, you give `let s = &mut String::from("hello");` as an example of mutable string while `let mut s = String::from("hello");` is more common and...