"Null Coalescing Assignment"

// Classic example
if (myStr == null) myStr = "Hello";

// New way with null-coalescing assignment
myStr ??= "Hello";


Code snippet taken from "Complete C# Quick Reference - C# 8".