You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-12Lines changed: 29 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
A Simple Math and Pseudo C# Expression Evaluator in One C# File.
4
4
5
-
And now can execute small C# like scripts
5
+
And from version 1.2.0 can execute small C# like scripts
6
6
7
-
It is largely based on and inspired by the following resources [this post on stackoverflow](http://stackoverflow.com/questions/333737/evaluating-string-342-yield-int-18/333749), [NCalc](https://ncalc.codeplex.com/) and [C# Operators](https://msdn.microsoft.com/en-us/library/6a71f45d.aspx)
7
+
It is largely based on and inspired by the following resources [this post on stackoverflow](http://stackoverflow.com/questions/333737/evaluating-string-342-yield-int-18/333749), [NCalc](https://ncalc.codeplex.com/), [C# Operators](https://msdn.microsoft.com/en-us/library/6a71f45d.aspx) and [C# Statement Keywords](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/statement-keywords)
8
8
9
9
## Status
10
10
@@ -32,7 +32,7 @@ It is largely based on and inspired by the following resources [this post on st
32
32
* Manage now assignation operators like =, +=, -=, *= ... (On variables and sub properties)
33
33
* Manage now postfix operators ++ and -- (On variables and sub properties)
34
34
35
-
## And with [ScriptEvaluate](#scripts)
35
+
## And with [ScriptEvaluate](#scripts) method
36
36
* Small C# like script evaluation (Multi expressions separated by ;)
37
37
* Some conditional and loop blocks [keywords](#script-keywords) (if, while, for ...)
@@ -586,6 +600,9 @@ Currently the following script keywords are supported
586
600
|Jump|[continue](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/continue)|Supported in do, for and while blocks|
587
601
|Jump|[goto](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/goto)|Not supported (But if you looked after it -> Booo !!! Bad code)|
0 commit comments