GitUI.FormBrowse.RebaseClick C# (CSharp) Метод

RebaseClick() приватный Метод

private RebaseClick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private void RebaseClick(object sender, EventArgs e)
        {
            if (GitCommands.GitCommands.InTheMiddleOfRebase())
                GitUICommands.Instance.StartRebaseDialog(null);
            else
                GitUICommands.Instance.StartApplyPatchDialog();
            Initialize();
        }
FormBrowse