1
0
Fork 0
This commit is contained in:
Tim Van Baak 2024-11-14 09:02:10 -08:00
parent 6678f4c082
commit 6681897746
1 changed files with 1 additions and 1 deletions

View File

@ -165,4 +165,4 @@ For embedded applications, inlining functions often provides performance benefit
Func<int, int> Square = i -> i * i;
Console.WriteLine(Square.Apply(9)); // prints "81", but efficiently
Inlining is not always possible or beneficial. Dynamic functions may not be able to be inlined at compile time and inlining marge methods may adversely affect assembly size. For these cases, C# 13 also provides the **thick lambda operator**, `≡>`. Thick lambdas are marked for JIT compilation by the CLR. This allows you to get performance benefits even when dynamically defining functions or loading assemblies.
Inlining is not always possible or beneficial. Dynamic functions may not be able to be inlined at compile time and inlining large methods may adversely affect assembly size. For these cases, C# 13 also provides the **thick lambda operator**, `≡>`. Thick lambdas are marked for JIT compilation by the CLR. This allows you to get performance benefits even when dynamically defining functions or loading assemblies.