From 544928064035781f0726ee725b525564ebf235ea Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 10 Aug 2022 16:56:11 +0200 Subject: [PATCH] csharp: add static lambda annotation notes --- docs/dotnet/C#/C#.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md index 4f6b4d3..6ddff07 100644 --- a/docs/dotnet/C#/C#.md +++ b/docs/dotnet/C#/C#.md @@ -2142,6 +2142,9 @@ Delegate lambda = input => { return ; }; Delegate lambda = (input) => { return ; }; Delegate lambda = (Type input) => { return ; }; +// static modifier prevents unintentional capture of local variables or instance state by the lambda +Delegate lambda = (static Type input) => ; + Type variable = delegate { ; }; // ignore arguments of the method passed to the delegate // lambda type inference [C# 10]