Top "Memento" questions

The Memento pattern allows a caretaker object to roll back the originator object to a previous state, offering undo capability.

How to implement good and efficient undo/redo functionality for a TextBox

I have a TextBox which I would like to implement undo/redo functionality for. I have read that it might …

c# undo-redo memento
How is the Memento Pattern implemented in C#4?

The Memento Pattern itself seems pretty straight forward. I'm considering implementing the same as the wikipedia example, but before I …

c# design-patterns memento