标签:des style blog io color sp div on log
using System; namespace DesignPattern.Creational.Prototype { public class Prototype:ICloneable { public object Clone() { return this.MemberwiseClone(); } } }
DesignPattern_Creational_Prototype
标签:des style blog io color sp div on log
原文地址:http://www.cnblogs.com/rammderek/p/4097764.html