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.

24 lines
487 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Adapter
{
/*
* 카테고리: 구조 패턴
* 개요: 기존 라이브러리 또는 시스템의 인터페이스가 현재 시스템과 호환되지 않을 때,
* 중간 인터페이스를 연결해 줌
*/
class Program
{
static void Main(string[] args)
{
Client client = new Client();
client.HowToUse();
Console.ReadKey();
}
}
}