Did you know you can chain null comparisons to any level on an object with ?? operator? See below for an example:
string inputString;
//set some value.
var multiEvaluationResult = inputString?? secondaryString ?? someOtherString;
Visit the DevX Tip Bank