Adapter 模式(对象适配器模式)
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Adapter{ public interface INewLog { void WriteLog(); } public interface IOldLog { void Write(); } class File... 阅读全文
posted @ 2009-07-25 14:01 Acor 阅读(179) 评论(0) 推荐(0) 编辑