示例#1
0
 //
 static void Main(string[] args) {
     //Create a new object by asking a prototype to clone itself
     Prototype prototype = new ConcretePrototype().Clone();
 }
示例#2
0
 //
 static void Main(string[] args)
 {
     //Create a new object by asking a prototype to clone itself
     Prototype prototype = new ConcretePrototype().Clone();
 }