[설계 패턴 C#] 추상 팩토리 패턴 (Abstract Factory Pattern) "본문 내용"[Escort GoF의 디자인 패턴] 1. 추상 팩토리 패턴 (Abstract Factory Pattern)[Escort GoF의 디자인 패턴] 1. 추상 팩토리 패턴 (Abstract Factory Pattern) 설계[Escort GoF의 디자인 패턴] 1. 추상 팩토리 패턴 (Abstract Factory Pattern) 구현 ▶ITake.cs using System; namespace AbstractFactory { class EvLens:ITake { public void Take() //ITake에 약속된 기능을 구체적으로 구현 { Console.WriteLine("부드럽다."); } public..