System.Threading.Invokers.BeginInvoke C# (CSharp) 메소드

BeginInvoke() 공개 정적인 메소드

Begin invoking an action
public static BeginInvoke ( this invoker, System.Action action ) : IAsyncResult
invoker this
action System.Action
리턴 IAsyncResult
        public static IAsyncResult BeginInvoke(this ISynchronizeInvoke invoker, Action action)
        {
            return invoker.BeginInvoke(action, Utils.EmptyArgs);
        }