23中设计模式例子,PDF格式

源代码在线查看: command.cs

软件大小: 5895 K
上传用户: a1a1J0
关键词: 设计模式
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				using CsharpPats;
				
				namespace Strategy
				{
					/// 
					/// Command interface
					/// 
					public interface Command
					{
						void Execute();
					}
				}
							

相关资源