End Google Ads 201810 - BS.net 01 --> I have a method that takes a SendOrPostCallback delegate as a parameter.
public void Post(SendOrPostCallback sendOrPostCallback)
{
// ...
}
I want to overload this method and instead take a MethodInvoker delegate.
public void Post(MethodInvoker methodInvoker)
{
// ...
}
The problem is this second method needs to convert the MethodInvoker to a SendOrPostCallback using null for the state parameter so it can call the original method.

I can't figure out how to do this
DaveIf this helped, please vote & accept answer!

Binging is like googling, it just feels dirtier.
Please take your VB.NET out of our nice case sensitive forum.(Pete O'Hanlon)
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)