CSPspEmu.Gui.Winforms.PspDisplayForm.DoInvoke C# (CSharp) Method

DoInvoke() private method

private DoInvoke ( System.Action Action ) : void
Action System.Action
return void
        private void DoInvoke(Action Action)
        {
            if (this.InvokeRequired && GuiThread != Thread.CurrentThread && (!Platform.IsMono || Platform.OS != OS.Windows))
            //if (this.InvokeRequired && GuiThread != Thread.CurrentThread)
            {
                this.Invoke(Action);
            }
            else
            {
                Action();
            }
        }
PspDisplayForm