原型模式
原型模式简单的说,就是克隆自己,但从性能角度来说,还是很有作用的,一般用在需要大量创建对象,且每个对象属性值大多差不多时
public class Email : ICloneable { public string Receiver { get; set; } public string Sender { get; set; } public string Subject { get; set; } public string Name { get; set; } public string Content { get; set; } public string Footer { get; set; } public object Clone() { return this.MemberwiseClone(); } }