What is nullable reference types in C#?

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

Explanation

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