mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
csharp: add static lambda annotation notes
This commit is contained in:
parent
18169f3979
commit
e01c4185cd
1 changed files with 3 additions and 0 deletions
|
@ -2140,6 +2140,9 @@ Delegate<Type> lambda = input => { return <expr>; };
|
|||
Delegate<Type> lambda = (input) => { return <expr>; };
|
||||
Delegate<Type> lambda = (Type input) => { return <expr>; };
|
||||
|
||||
// static modifier prevents unintentional capture of local variables or instance state by the lambda
|
||||
Delegate<Type> lambda = (static Type input) => <expr>;
|
||||
|
||||
Type variable = delegate { <expression>; }; // ignore arguments of the method passed to the delegate
|
||||
|
||||
// lambda type inference [C# 10]
|
||||
|
|
Loading…
Add table
Reference in a new issue