What is nullable reference types in C#?

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

Explanation

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