C# Nullable Type
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgE8BDifLlxZ7ECoOd2VaIfDpbH3ClPDbkoBUU5p48ors91hl3HziQpeRLRLDjX7TYIOn8XwQysWPH7zTlNIg9W_wXpPnQajMFr-7StwETP41vzrLfIHGOrpwIETB81mNhy5anNAzzTN7-J/w559-h235/image.png)
Description: C# provides a special data types, the nullable type which is used to assign the null value in the variable. Suppose there is variable and there will be situation where user want to assign null value to same variable. So here system will give the exception. To remove this drawback, c# introduces the nullable type. Syntax : < data_type> ? <variable_name> = null; Example :