2013年5月31日

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) 编辑

C#装饰者模式实例代码

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 装饰者{ class Program { static void Main(string[] args) { ConcreteComponent con = new ConcreteComponent(); ConcreteDecoratorA a = new ConcreteDecoratorA(); a.... 阅读全文

posted @ 2013-05-31 10:33 程序猴chengxuhou.com 阅读(2563) 评论(0) 推荐(1) 编辑

C#适配器模式代码

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 适配器{ class Program { static void Main(string[] args) { Dog dog = new DogAdapter(new Robot()); } public abstract class Dog { public abstract void ... 阅读全文

posted @ 2013-05-31 09:41 程序猴chengxuhou.com 阅读(416) 评论(0) 推荐(0) 编辑

vs批量删除代码中的所有空行

摘要: 使用查找替换:^:b*$\n选择正则表达式替换为空白 阅读全文

posted @ 2013-05-31 09:35 程序猴chengxuhou.com 阅读(381) 评论(0) 推荐(0) 编辑

导航