I have an object lets call it ObjectA
ObjectA
and that object has 10 properties and those are all strings.
var myObject = new {Property1=\"\",P
To only check if all properties are null:
bool allPropertiesNull = !myObject.GetType().GetProperties().Any(prop => prop == null);