❔ Delegates
This code doesn't compile and I don't understand the issue.
What Am I doing wrong?

c#
namespace MWE
{
internal class Program
{
static int add(int a, int b) {
return a + b;
}
static void Main(string[] args)
{
Delegate esum = add;
Console.WriteLine(esum(4, 6));
}
}
}