Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 475 Bytes

README.md

File metadata and controls

8 lines (8 loc) · 475 Bytes

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