BasicUI_MonoGame_Win_Desktop.ClipboardService.GetText C# (CSharp) Метод

GetText() публичный Метод

public GetText ( ) : string
Результат string
        public string GetText()
        {
            string text = string.Empty;
            Thread thread = new Thread(() => text = Clipboard.GetText());
            thread.SetApartmentState(ApartmentState.STA);
            thread.Start();
            thread.Join();
            return text;
        }
ClipboardService