你的位置:首页 > 软件开发 > ASP.net > 【设计模式】装饰者模式

【设计模式】装饰者模式

发布时间:2015-07-17 16:00:25
※文件引自OneDrive,有些人可能看不到代码如下:IPrice 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using Syst ...

※文件引自OneDrive,有些人可能看不到

代码如下:

IPrice

【设计模式】装饰者模式【设计模式】装饰者模式
 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6  7 namespace Model 8 { 9   public interface IPrice10   {11     decimal Cost { get; set; }12   }13 }

原标题:【设计模式】装饰者模式

关键词:设计模式

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。