Bevisuali.UX.ExtWPF.BeginInvoke C# (CSharp) 메소드

BeginInvoke() 공개 정적인 메소드

public static BeginInvoke ( this dispatcher, System.Action action ) : void
dispatcher this
action System.Action
리턴 void
        public static void BeginInvoke(this Dispatcher dispatcher, Action action)
        {
            Delegate actionAsDelegate = action as Delegate;
            dispatcher.BeginInvoke(actionAsDelegate);
        }