xxxxxxxxxx
public string SystemName => "CellPay";
//is equivalent to below code:
public string SystemName
{
get
{
return "CellPay";
}
}
xxxxxxxxxx
int? a = null;
int b = a | -1;
Console.WriteLine(b); // output: -1