Nullable Types Access
using System;
class MainClass
{
static void Main()
{
int? nullableInteger = 15;
if (nullableInteger.HasValue)
Console.WriteLine("{0}", nullableInteger.Value);
}
}
Output 15
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
|