Csharp设计模式一书的源码

源代码在线查看: command.cs

软件大小: 761 K
上传用户: xof1234
关键词: Csharp 设计模式 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				
				namespace ButtonMenu
				{
					/// 
					/// interface for Command type
					/// 
					public interface Command 	{
						void Execute();
					}
				}
							

相关资源