/ExpressionTreeParsing

Example console app for parsing and building expression trees in C#

Primary LanguageC#MIT LicenseMIT

ExpressionTreeParsing

Example console app for parsing and building expression trees in C#.

  1. The console app takes an expression that was entered into ExpressionTreeParsing.Console.Program.cs
  2. Serializes the Expression Tree into POCO classes
  3. Serializes the POCO tree to JSON
  4. Deserializes the JSON to a POCO tree
  5. Deserielizes to the POCO tree to an Expression Tree
  6. Runs both the original expression and the new expression and writes the output to the console