コード例 #1
0
ファイル: Program.cs プロジェクト: hkuntal/TeamWorkManagement
        private static void Main(string[] args)
        {
            Console.WriteLine("Adapter design pattern....");

            // Create adapter and place a request
            Target target = new Adapter(); // You can also create a adaptee object and pass it in the constructor of the Adapter object
            target.Request();

            Console.ReadLine();
        }