Click here to Skip to main content
15,893,588 members
Articles / Programming Languages / C#

Prototype Design Pattern

Rate me:
Please Sign up or sign in to vote.
4.75/5 (14 votes)
23 Sep 2009CPOL4 min read 92.2K   666   59  
This article shows a case study about how we use the Prototype pattern to Elizabeth's fun activity
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace www.askbargains.com
{
    namespace PrototypeDesignPattern
    {
        public class Leg : ICloneable
        {
            public string Side { get; set; }
            public string Name { get; set; }

            public void Display()
            {
                Console.WriteLine("This is my {0} {1} ", Side, Name);
            }

            #region ICloneable Members

            public object Clone()
            {
                return this.MemberwiseClone();
            }

            #endregion
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Sr Software Architect.Microsoft Certified Solutions Developer (MCSD).

Comments and Discussions