C# Anonymous Methods & The Action Object



Two interesting additions to the 2.0 C# language are the Action object, and anonymous methods. The Action object lets you specify an action to be performed on an object and the anonymous method lets you specify a method with no body (thus... the anonymity).



Read: https://www.c-sharpcorner.com/article/C-Sharp-anonymous-methods-the-action-object/