What is nullable reference types in C#?

  1. Reference types only
  2. Value types only
  3. Types that can be null by default
  4. Feature to help avoid null reference exceptions

Explanation

Nullable reference types is a feature that helps developers avoid null reference exceptions by making the compiler aware of null possibilities.