[설계 패턴 C#] 20. 메멘토 패턴(Memento Pattern) "본문 내용"[Escort GoF의 디자인 패턴 C#] 20. 메멘토 패턴(Memento Pattern)[Escort GoF의 디자인 패턴 C#] 20. 메멘토 패턴(Memento Pattern) 설계[Escort GoF의 디자인 패턴 C#] 20. 메멘토 패턴(Memento Pattern) 구현 ▶ Snapshot.csnamespace Memento{ class Snapshot { public int Tone{ get; private set; } public int Brightness{ get; private set; } public int Saturation{ get; private set; } public Snapshot(int ..