C# Advanced Tutorial in Tamil | Nullable value types in tamil, C# interview Question in tamil,
lear charp in tamil
what is nullable value type in tamil
Example code :
int? a = 10;
if (a != null)
{
Console.WriteLine($" a is {a.Value}");
}
else
{
Console.WriteLine("a does not have a value");
}
Console.ReadKey();
Author : Anto sujesh

0 Comments