AI Features

Null Value

Learn what the null value is.

The null and reference types

In C#, we have a special value called null. This value represents the absence of value and is the default for reference-type variables.

string name = null;

The null value means ...