Csharp设计模式图书加源代码是csharp程序员学习模式编程的一本好书

源代码在线查看: command.cs

软件大小: 5897 K
上传用户: lzjcbm11
关键词: Csharp csharp 设计模式 图书
下载地址: 免注册下载 普通下载 VIP

相关代码

  1. using System;  
  2. using CsharpPats;  
  3.   
  4. namespace Strategy  
  5. {  
  6.     ///   
  7.     /// Command interface  
  8.     ///   
  9.     public interface Command  
  10.     {  
  11.         void Execute();  
  12.     }  
  13. }  
  14.               

相关资源