You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
549 B
23 lines
549 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Builder
|
|
{
|
|
/*
|
|
* 카테고리: 생성패턴
|
|
* 개요: 주로 복잡한 객체를 생성할 때 필요한 여러 스텝 또는 기능을 정의하고
|
|
* Director라는 또 다른 클래스에서 이러한 Builder의 여러 스텝 또는 기능들을
|
|
* 필요에 따라 선택하여 Build 하게 함
|
|
*/
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Client.HowToTest();
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|
|
|