"Null-Forgiven Property"

// We know this property will have a non-null value set before it is used no matter what so
// we can tell the compiler to not worry about it being null here:
public string Name { get; } = null!; 


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