"Generic" solution that Merhdad Mehrdad described is pretty standard and commonly accepted. With generics, however, you can improve code clarity and maintenance effort a bit by incapsulating strongly typed result access.
Here's an example of how consuming code can look in .Net 2.0+ and c# 3.0+:
public static void Test()
{
// AsyncCall<T> implements classic IAsyncResult
var ar = AsyncCall<int>.Start(() => Sample(5, 8));
// wait for result or do some other work at this point
while (!ar.IsCompleted) Thread.Sleep(50);
// AsyncCall<T> also exposes call result
Console.WriteLine("ar.Result = {0}", ar.Result);
}
public static int Sample(int x, int y)
{
Thread.Sleep(1000);
return x + y;
}
AsyncCall implementation can look like this:
public class AsyncCall<T> : IAsyncResult
{
public static AsyncCall<T> Start(Func<T> call)
{
return new AsyncCall<T>(call);
}
private readonly Func<T> _call;
private readonly IAsyncResult _iar;
private AsyncCall(Func<T> call)
{
_call = call;
_iar = call.BeginInvoke(Callback, null);
}
private void Callback(IAsyncResult ar)
{
Result = _call.EndInvoke(ar);
}
public T Result { get; private set; }
public object AsyncState
{
get { return _iar.AsyncState; }
}
public WaitHandle AsyncWaitHandle
{
get { return _iar.AsyncWaitHandle; }
}
public bool IsCompleted
{
get { return _iar.IsCompleted; }
}
public bool CompletedSynchronously
{
get { return _iar.CompletedSynchronously; }
}
}
