Skip to content

Instantly share code, notes, and snippets.

@gyx9208
gyx9208 / ExpressionParser.cs
Created January 21, 2019 07:03
Expression Parser
/* * * * * * * * * * * * * *
* A simple expression parser
* --------------------------
*
* The parser can parse a mathematical expression into a simple custom
* expression tree. It can recognise methods and fields/contants which
* are user extensible. It can also contain expression parameters which
* are registrated automatically. An expression tree can be "converted"
* into a delegate.
*