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
592 B
23 lines
592 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Template
|
|
{
|
|
/*
|
|
* 카테고리: 행위 패턴
|
|
* 개요: 메서드 중 일부 로직을 하위 서브클래스에서 재정의하도록 함
|
|
* 베이스클래스에서 기본 골격 템플릿 코드를 만들어두고 서브클래스에서 일부 로직을 추가/수정함
|
|
*/
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Client.HowToTest();
|
|
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|
|
|