GitScc.PendingChangesView.WriteToDiffWindow C# (CSharp) Method

WriteToDiffWindow() public method

Writes a message to the diff editor
public WriteToDiffWindow ( string message ) : void
message string The message.
return void
        public void WriteToDiffWindow(string message)
        {
            var action = new Action(() => this.DiffEditor.AppendText(Environment.NewLine + message));
            this.DiffEditor.Dispatcher.BeginInvoke(action);
        }