/// <summary>
        /// Entry point into console application.
        /// </summary>
        public void Execute()
        {
            // Create two instances and clone each

            ConcretePrototype1 p1 = new ConcretePrototype1("I");
            ConcretePrototype1 c1 = (ConcretePrototype1)p1.Clone();

            Console.WriteLine("Cloned: {0}", c1.Id);

            ConcretePrototype2 p2 = new ConcretePrototype2("II");
            ConcretePrototype2 c2 = (ConcretePrototype2)p2.Clone();

            Console.WriteLine("Cloned: {0}", c2.Id);
        }
        /// <summary>
        /// Entry point into console application.
        /// </summary>
        private static void Main()
        {
            // Create two instances and clone each

              ConcretePrototype1 p1 = new ConcretePrototype1("I");
              ConcretePrototype1 c1 = (ConcretePrototype1)p1.Clone();
              Console.WriteLine("Cloned: {0}", c1.Id);

              ConcretePrototype2 p2 = new ConcretePrototype2("II");
              ConcretePrototype2 c2 = (ConcretePrototype2)p2.Clone();
              Console.WriteLine("Cloned: {0}", c2.Id);

              // Wait for user
              Console.ReadKey();
        }
Example #3
0
        /// <summary>
        /// Entry point into console application.
        /// </summary>
        private static void Main()
        {
            // Create two instances and clone each

            ConcretePrototype1 p1 = new ConcretePrototype1("I");
            ConcretePrototype1 c1 = (ConcretePrototype1)p1.Clone();

            Console.WriteLine("Cloned: {0}", c1.Id);

            ConcretePrototype2 p2 = new ConcretePrototype2("II");
            ConcretePrototype2 c2 = (ConcretePrototype2)p2.Clone();

            Console.WriteLine("Cloned: {0}", c2.Id);

            // Wait for user
            Console.ReadKey();
        }