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

OpenFileRealOnNewThreadLock() private method

private OpenFileRealOnNewThreadLock ( string FilePath ) : void
FilePath string
return void
        private void OpenFileRealOnNewThreadLock(string FilePath)
        {
            var BackgroundThread = new Thread(() =>
            {
                Console.WriteLine("PauseResume");
                PauseResume(() =>
                {
                    OpenFileReal(FilePath);
                });
            });
            BackgroundThread.IsBackground = true;
            BackgroundThread.Start();
        }
PspDisplayForm