null coalesce c# assignment code example
Example: c# 8 null coalescing assignment
// C# 8 null coalescing assignment operator:
a ??= b;
// the same as:
a = a ?? b;
// C# 8 null coalescing assignment operator:
a ??= b;
// the same as:
a = a ?? b;