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#
- Host: GitHub
- URL: https://github.com/rightpoint/expressiontreeparsing
- Owner: Rightpoint
- License: mit
- Created: 2020-02-21T12:39:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T09:46:08.000Z (over 3 years ago)
- Last Synced: 2025-04-12T08:43:51.105Z (about 1 year ago)
- Topics: c-sharp, dot-net, dot-net-standard, expression-tree
- Language: C#
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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