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 and MemoryStream.
Which is the preferred method? Can anyone point out advantages/disadvantages of each approach?
By the way, I am interested in looking at it from resource usage/developer productivity perspective. I apologize for not stating that first.
Assuming that the memento does not need to be persisted, which is preferred?
From a developer productivity point of view, serialization wins hands down. A few lines that are generic for any object is more efficient than having to manually create a clone that involves possibly private constructors, field assignments, etc.
But then again, perhaps serialization is heavy - I'm not certain.