File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ Dahomey.ExpressionEvaluator code does not trigger any AOT complilation. It means
1010## Building
1111Supports Visual Studio 2017 only
1212
13- # Examples
14- ## Parse a numeric expression
13+ ## Examples
14+ ### Parse a numeric expression
1515``` csharp
1616ExpressionParser parser = new ExpressionParser ();
1717parser .RegisterVariable <int >(" a" );
@@ -26,7 +26,7 @@ The result will be:
26263
2727```
2828
29- ## Parse a numeric expression with member access
29+ ### Parse a numeric expression with member access
3030``` csharp
3131class A
3232{
@@ -51,7 +51,7 @@ The result will be:
515113
5252```
5353
54- ## Parse a numeric expression with array or list access
54+ ### Parse a numeric expression with array or list access
5555``` csharp
5656ExpressionParser parser = new ExpressionParser ();
5757parser .RegisterVariable <List <int >>(" a" );
@@ -66,7 +66,7 @@ The result will be:
66663
6767```
6868
69- ## Parse a numeric expression with function access
69+ ### Parse a numeric expression with function access
7070``` csharp
7171Func < double , double > func = n => Math .Cos (n );
7272ExpressionParser parser = new ExpressionParser ();
You can’t perform that action at this time.
0 commit comments