C# Advanced Tutorial in Tamil | Nullable value types T?

Опубликовано: 16 Май 2026
на канале: Anto sujesh
476
13

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