Skip to content

Commit

Permalink
Tweaked ExpressionStringBuilder to support Xor and Coalesce operators
Browse files Browse the repository at this point in the history
This is a temporary solution.

I will create a pull request to ExpressionToString and then update the
package here.
  • Loading branch information
AlexArchive committed Apr 8, 2015
1 parent 27b5209 commit a13eadd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,10 @@ private static string ToString(ExpressionType type)
return "||";
case ExpressionType.Subtract:
return "-";
case ExpressionType.Coalesce:
return "??";
case ExpressionType.ExclusiveOr:
return "^";
default:
throw new NotImplementedException();
}
Expand Down

0 comments on commit a13eadd

Please sign in to comment.