Exemplo n.º 1
0
        public override Prototype Clone()
        {
            ConcretePrototype prototype = new ConcretePrototype();

            prototype.Attr = this.Attr;
            return(prototype);
        }
 public override Prototype Clone()
 {
     ConcretePrototype prototype = new ConcretePrototype();
     prototype.Attr = this.Attr;
     return prototype;
 }