BclExtras.Threading.ImmediateInvoke.AsyncResult.AsyncResult C# (CSharp) Method

AsyncResult() private method

private AsyncResult ( Delegate method, object args ) : System
method System.Delegate
args object
return System
            internal AsyncResult(Delegate method, object[] args)
            {
                Future = BclExtras.Threading.Future.Create(() => method.DynamicInvoke(args) );
            }
ImmediateInvoke.AsyncResult