Skip to content

Commit 9173bf5

Browse files
Update README.md
1 parent 52c8ac0 commit 9173bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ int result = Eval.Execute<int>("X + Y", new { X = 1, Y = 2});
99
int result = Eval.Execute<int>(@"
1010
var list = new List<int>() { 1..100 };
1111
var filter = list.Where(x => x < 3);
12-
return result.Sum(x => x);");
12+
return filter.Sum(x => x);");
1313
```
1414

1515
> Eval Expression.NET improve dramatically performance to access public and private method, field, property value or to create object instance over using C# reflection.

0 commit comments

Comments
 (0)