Mega Code Archive
Categories
/
C# Book
/
01 Language Basics
0214 nullable type
nullable type represents nullable value type. We can create a nullable type by suffixing the ? to the value type. using System; using System.IO; class Test { static void Main() { int? i = null; } }