Skip to content

Commit 0f7396d

Browse files
authored
Update eval-execute.md
1 parent ef508af commit 0f7396d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs2/pages/documentations/eval-expressions/eval-execute.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ You can specify parameter value to use in the expression from various way:
1414
- Class Member
1515
- Dictionary
1616

17-
Under the hood, the fist time an expression is executed, it's getting compiled and the delegate is stored in the memory before being returned and executed. All future call from the same expression will retrieve the delegate from the memory to optimize the performance.
17+
Under the hood, the fist time an expression is executed, it's getting compiled and the delegate is stored in the memory before being returned and executed. All future calls from the same expression will retrieve the delegate from the memory to optimize the performance.
1818

19-
Even with this optimization, if you have to evaluate multiple times the same expression, by example in a for loop, we highly recommend you to use directly the delegate returning from the Compile method instead.
19+
Even with this optimization, if you have to evaluate multiple times the same expression, for example in a for loop, we highly recommend you to use directly the delegate returning from the Compile method instead.
2020

2121
## Execute and return a strongly typed result
2222
You can return the result as a strongly typed type:

0 commit comments

Comments
 (0)