상속: GuiLabs.Undo.AbstractAction
예제 #1
0
파일: Program.cs 프로젝트: ywscr/Undo
        static void SetConsoleColor(ConsoleColor color)
        {
            SetConsoleColorAction action = new SetConsoleColorAction(color);

            actionManager.RecordAction(action);
        }
예제 #2
0
 static void SetConsoleColor(ConsoleColor color)
 {
     SetConsoleColorAction action = new SetConsoleColorAction(color);
     actionManager.RecordAction(action);
 }