Advertisement

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

C# Advanced Tutorial in Tamil | Nullable value types T? 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

Nullable,Nullable value types,Nullable value types in tamil,C# in tamil,csharp in tamil,c in tamil,learn C# in tamil,learn csharp in tamil,

Post a Comment

0 Comments