An open API service indexing awesome lists of open source software.

https://github.com/rightpoint/expressiontreeparsing

Example console app for parsing and building expression trees in C#
https://github.com/rightpoint/expressiontreeparsing

c-sharp dot-net dot-net-standard expression-tree

Last synced: 10 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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
1. Serializes the Expression Tree into POCO classes
1. Serializes the POCO tree to JSON
1. Deserializes the JSON to a POCO tree
1. Deserielizes to the POCO tree to an Expression Tree
1. Runs both the original expression and the new expression and writes the output to the console