C#命令模式实例代码
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 命令模式{ class Program { static void Main(string[] args) { Receiver r = new Receiver(); Command c = new ConcreteCommand(r); Invoker i = new Invoker(); ... 阅读全文
posted @ 2013-05-31 10:52 程序猴chengxuhou.com 阅读(3155) 评论(0) 推荐(0) 编辑