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]