The Memento pattern allows a caretaker object to roll back the originator object to a previous state, offering undo capability.
I have a TextBox which I would like to implement undo/redo functionality for. I have read that it might …
c# undo-redo mementoThe Memento Pattern itself seems pretty straight forward. I'm considering implementing the same as the wikipedia example, but before I …
c# design-patterns memento