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

BeginInvoke() public method

public BeginInvoke ( Delegate method, object args ) : IAsyncResult
method System.Delegate
args object
return IAsyncResult
        public IAsyncResult BeginInvoke(Delegate method, object[] args)
        {
            return new AsyncResult(method, args);
        }