Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 687 Bytes

RR0137.md

File metadata and controls

29 lines (19 loc) · 687 Bytes

Replace method group with lambda

Property Value
Id RR0137
Title Replace method group with lambda
Syntax method group
Enabled by Default

Usage

Before

Func<object, object, object> func = Foo;

After

Func<object, object, object> func = (f, g) => Foo(f, g)

See Also

(Generated with DotMarkdown)