Hi all,
I have a few methods like this
public void DoSomething(Action<int> action) { ... }
In some cases I do not use the parameters passed into action. Are there any differences I should be aware of between calling it like this
DoSomething(delegate { ... });
or
DoSomething(_ => { ... });