File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -533,7 +533,7 @@ Here is the list of available assignation operator
533533 |[/=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/division-assignment-operator)|Supported|
534534 |[%=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/remainder-assignment-operator)|Supported|
535535 |[&=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/and-assignment-operator)|Supported|
536- |[|=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/or-assignment-operator)|Supported|
536+ |[\ |=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/or-assignment-operator)|Supported|
537537 |[^=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/xor-assignment-operator)|Supported|
538538 |[<<=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/left-shift-assignment-operator)|Supported|
539539 |[>>=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/right-shift-assignment-operator)|Supported|
@@ -637,5 +637,6 @@ evaluator.Types.Add(typeof(MyClass));
637637I would say every C # evaluation libraries have drawbacks and benefits , ExpressionEvaluator is not an exception so choose wisely .
638638
639639The biggest difference of ExpressionEvaluator is that everything is evaluated on the fly , nothing is compiled or transpile nor in CLR /JIT nor in lambda expressions nor in javascript or other languages stuffs .
640- So it can be slower in some cases (sometimes not ) but it also avoid a lot of memory leaks and already allow to evaluate some small scripts .
640+ So it can be slower in some cases (sometimes not ) but it also avoid a lot of memory leaks .
641+ It already allow to evaluate some small scripts .
641642And if you don 't want an another .dll file in your project , you only need to copy one [C # file ](./ CodingSeb .ExpressionEvaluator / ExpressionEvaluator .cs ) in your project .
You can’t perform that action at this time.
0 commit comments