Currently I have the following ternary operation:
string value = "";
value = Company == null ? Name : Name + "," + Company;
Everything works great. However, I'd like to check if Company is null or "".
Is there a way to do that using a ternary statement?