Can someone explain this one too?
Getting a default value with Nullable Types:
int? n1=null; int n2=3;
(n1 ?? 10) will return the value 10.
int product= (n1 ?? 10) * n2; Now product will hold 30 since (n1??10) will return 10.
now,what does the statement " (n1 ?? 10) " means and why does it return the value '10'