csharp: add static lambda annotation notes

This commit is contained in:
Marcello 2022-08-10 16:56:11 +02:00
parent 18169f3979
commit e01c4185cd

View file

@ -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]