show/hide this revision's text 2 added 209 characters in body

The generic approach is to use a delegate:

IAsyncResult BeginMyFunction(AsyncCallback callback)
{
    return BeginMyFunction(callback, null);
}

IAsyncResult BeginMyFunction(AsyncCallback callback, object context)
{
    // Func<int> del = MyFunctionis just a delegate that matches the method signature,
    // It could be any matching delegate and not necessarily be *generic*
    // This generic solution does not rely on generics ;)
    return del.BeginInvoke(callback, new Func<int>(MyFunction).BeginInvoke(callback, context);
}

int EndMyFunction(IAsyncResult result)
{
    Func<int> del = MyFunction;
    return del.EndInvoke(result);
new Func<int>(MyFunction).EndInvoke(result);
}
show/hide this revision's text 1

The generic approach is to use a delegate:

IAsyncResult BeginMyFunction(AsyncCallback callback)
{
    return BeginMyFunction(callback, null);
}

IAsyncResult BeginMyFunction(AsyncCallback callback, object context)
{
    Func<int> del = MyFunction;
    return del.BeginInvoke(callback, context);
}

int EndMyFunction(IAsyncResult result)
{
    Func<int> del = MyFunction;
    return del.EndInvoke(result);
}