Skip to content

Commit 1abb2d6

Browse files
authored
Update eval-execute.md
1 parent 1fdf2f2 commit 1abb2d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs2/pages/documentations/eval-execute.md

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

13-
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.
13+
Under the hood, the first 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.
1414

15-
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.
15+
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.
1616

1717
## Execute and return a strongly typed result
1818
You can return the result as a strongly typed type:

0 commit comments

Comments
 (0)