Action Delegate C#
- by user275561
So I read MSDN, And stackoverflow. I understand what the Action Delegate does in general but it is not clicking no matter how many examples I do. In General same goes for the idea of delegates. So here is my question when you have a function like this
public GetCustomers(Action<IEnumerable<Customer>,Exception> callBack)
{
}
I just Dont have a clue on what is that or what should i pass to it.