Editor.Source_Files.Views.UndoListView.revertEvent C# (CSharp) 메소드

revertEvent() 공개 메소드

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