Editor.Source_Files.Views.UndoListView.revertEvent C# (CSharp) Méthode

revertEvent() public méthode

public revertEvent ( ) : void
Résultat void
        public void revertEvent()
        {
            if(undoList.Items.Count > 0)
                undoList.Invoke((MethodInvoker)(() => undoList.Items.RemoveAt(undoList.Items.Count - 1)));
        }