Reputation: 10333
What is the best way to check if a System.Linq.Expressions.Expression
instance is empty? For example, something like this:
Expression expression = Expression.Empty();
...
if (expression.IsEmpty) { ...
only that IsEmpty
does not exist.
One idea is to test the outcome of ToString
:
if (expression.ToString() == "default(Void)") { ...
but that doesn't seem right.
Upvotes: 4
Views: 1081
Reputation: 144136
According to the documentation Empty()
returns
A DefaultExpression that has the NodeType property equal to Default and the Type property set to Void.
so you should be able to use:
if(expression.NodeType == ExpressionType.Default && expression.Type == typeof(void))
Upvotes: 3