Skip to content

Commit 1ca1ddd

Browse files
committed
Absolutes links on wiki (so it works from local and any branch)
1 parent e73cf1b commit 1ca1ddd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,28 @@ It is largely based on and inspired by the following resources [this post on st
1818
## Features
1919
* Basic mathematical expression evaluation
2020
* System.Math methods and constants directly available (some like Max, Min, Avg are improved)
21-
* Some useful [functions](./wiki/Variables-and-functions#standard-functions) for example to create List and Arrays
22-
* [Custom variables definition](./wiki/Variables-and-functions#custom-variables)
23-
* [On the fly variables and functions evaluation](./wiki/Variables-and-functions#on-the-fly-variables-and-functions-evaluation) (To easily extend possibilities, Manage also on instance Property and Methods)
24-
* [A large set of C# operators availables](./wiki/Operators-and-Keywords#standard-operators)
21+
* Some useful [functions](https://github.com/codingseb/ExpressionEvaluator/wiki/Variables-and-functions#standard-functions) for example to create List and Arrays
22+
* [Custom variables definition](https://github.com/codingseb/ExpressionEvaluator/wiki/Variables-and-functions#custom-variables)
23+
* [On the fly variables and functions evaluation](https://github.com/codingseb/ExpressionEvaluator/wiki/Variables-and-functions#on-the-fly-variables-and-functions-evaluation) (To easily extend possibilities, Manage also on instance Property and Methods)
24+
* [A large set of C# operators availables](https://github.com/codingseb/ExpressionEvaluator/wiki/Operators-and-Keywords#standard-operators)
2525
* Instance and static methods and properties access like as in C#
2626
* You can call Methods and/or Properties on your own classes (just pass a object as custom variables)
27-
* [C# primary types](./wiki/C%23-Types-Management#primary-types)
27+
* [C# primary types](https://github.com/codingseb/ExpressionEvaluator/wiki/C%23-Types-Management#primary-types)
2828
* Use strings as in C# (@"", $"", $@"" available)
2929
* Lambda expressions
30-
* Classes like File, Directory, Regex, List ... available ([You can extend the list of Namespaces](./wiki/C%23-Types-Management#assemblies-namespaces-and-types))
31-
* Create instance with [new(MyClassName, constructorArgs)](./wiki/Variables-and-Functions#standard-functions) or [new MyClassName(constructorArgs)](./wiki/Operators-and-Keywords#standard-operators)
32-
* [Call void methods with fluid prefix convention to chain operations](./wiki/Variables-and-Functions#go-fluid-with-a-simple-methods-prefixing-convention)
33-
* Manage [ExpandoObject](./wiki/ExpandoObject)
30+
* Classes like File, Directory, Regex, List ... available ([You can extend the list of Namespaces](https://github.com/codingseb/ExpressionEvaluator/wiki/C%23-Types-Management#assemblies-namespaces-and-types))
31+
* Create instance with [new(MyClassName, constructorArgs)](https://github.com/codingseb/ExpressionEvaluator/wiki/Variables-and-Functions#standard-functions) or [new MyClassName(constructorArgs)](https://github.com/codingseb/ExpressionEvaluator/wiki/Operators-and-Keywords#standard-operators)
32+
* [Call void methods with fluid prefix convention to chain operations](https://github.com/codingseb/ExpressionEvaluator/wiki/Variables-and-Functions#go-fluid-with-a-simple-methods-prefixing-convention)
33+
* Manage [ExpandoObject](https://github.com/codingseb/ExpressionEvaluator/wiki/ExpandoObject)
3434

35-
## And with [ScriptEvaluate](./wiki/Getting-Started#small-scripts) method
35+
## And with [ScriptEvaluate](https://github.com/codingseb/ExpressionEvaluator/wiki/Getting-Started#small-scripts) method
3636
* Small C# like script evaluation (Multi expressions separated by ; )
37-
* Some conditional and loop blocks [keywords](./wiki/Operators-and-Keywords#scripts-keywords) (if, while, for, foreach ...)
37+
* Some conditional and loop blocks [keywords](https://github.com/codingseb/ExpressionEvaluator/wiki/Operators-and-Keywords#scripts-keywords) (if, while, for, foreach ...)
3838
* Multi-line (multi expression) Lambda expressions.
3939

4040
## Resources
41-
* [Getting Started](./wiki/Getting-Started)
42-
* [Documentation on the wiki](./wiki)
41+
* [Getting Started](https://github.com/codingseb/ExpressionEvaluator/wiki/Getting-Started)
42+
* [Documentation on the wiki](https://github.com/codingseb/ExpressionEvaluator/wiki)
4343

4444
## Similar projects
4545
### Free

0 commit comments

Comments
 (0)