Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Welcome!
Peglo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// {
using System;
class Hello
{
static void Main()
{
// }
int? a = null;
Console.WriteLine(a ?? 5);
// Equivalent ternary : a != null ? a : 5
// {
}
}
// }
Press desired key combination and then press ENTER.
Description
The ?? operator allows you to assign the variable if it is not null otherwise it assigns the right value.
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content