Tagged Questions
4
votes
3answers
154 views
State Pattern C# with previous states
I am new to the state pattern implementation in C#, could you provide some info on how you implement it.
I am refactoring a state machine in C# using the state pattern. Currently my state machine ...
3
votes
4answers
402 views
Memento implementation on .NET
I've seen two different implementation of memento on .NET.
One is pretty straightforward - The object creates another instance of itself.
The other is serializing the object using BinaryFormatter ...
0
votes
1answer
91 views
I need a design pattern to provide undo functionality to my program
I've used Memento, I need another for my coursework :)
0
votes
3answers
114 views
How to create default instances of the memento in a Memento Pattern?
I use the Memento Pattern to save properties of a multi-instance form, where n forms are created by user inside a parent form. The purpose of the memento is to regain the same number of forms, and ...