In Rust, <code>let _ = ...</code> and <code>let _unused = ...</code> are not the same
Explains the subtle but important difference between `let _ = ...` and `let _unused = ...` in Rust, using a live-reloading example.
Explains the subtle but important difference between `let _ = ...` and `let _unused = ...` in Rust, using a live-reloading example.
Explores a surprising C# compiler warning when using pattern matching with nullable properties, revealing edge cases in static analysis.
Explains the benefits and practical use of C# nullable reference types for safer code and cleaner API design.
Explains strategies to handle nullable reference type warnings when deserializing JSON into C# object models, comparing different approaches and their trade-offs.