The following code returns if any property is not null.
return myObject.GetType()
.GetProperties() //get all properties on object
.Select(pi => pi.GetValue(myObject)) //get value for the propery
.Any(value => value != null); // Check if one of the values is not null, if so it returns true.