check if multiple variables are null c#

C#
if((string1 ?? string2 ?? string3 ?? string4 ?? string5 ?? string6) == null){ ;}
Source

Also in C#: