Delegates in C# — a practical guide to C# delegates with clear examples you can reuse in real projects.
C# Tutorial Series (82/121). Prefer one article? Read the complete C# tutorial.
Short description
Delegates underpin events and callbacks.
Func/Action
Action<string> log = Console.WriteLine;
Func<int, int, int> add = (a, b) => a + b;