Microsoft.R.Components.InteractiveWorkflow.Implementation.InteractiveWindowConsole.Write C# (CSharp) 메소드

Write() 공개 메소드

public Write ( string text ) : void
text string
리턴 void
        public void Write(string text) {
            if (_workflow.ActiveWindow != null) {
                _workflow.Shell.DispatchOnUIThread(() => _workflow.ActiveWindow?.InteractiveWindow?.WriteError(text));
            }
        }