So I read MSDN and Stack Overflow. I understand what the Action Delegate does in general but it is not clicking no matter how many examples I do. In general, the same goes f
You would pass it a void method that takes an IEnumerable and an Exception as parameters...
Say you have this method:
public void DoSomeStuffWithCustomers( IEnumerable customers, Exception exception) { }
You would call the GetCustomers method like this:
GetCustomers(DoSomeStuffWithCustomers);