예제 #1
0
 public static void Run()
 {
     Console.WriteLine("<Private Class Data Pattern Example>");
     Console.WriteLine();
     ShapeMaker.GetShape(ShapeType.Circle).Draw();
     ShapeMaker.GetShape(ShapeType.Rectangle).Draw();
     Console.WriteLine();
     Console.WriteLine("</Private Class Data Pattern Example>");
     Console.WriteLine();
 }