Click here to Skip to main content
15,878,945 members
Articles / Programming Languages / C#

Yet Another Lesson about Design Patterns

Rate me:
Please Sign up or sign in to vote.
4.71/5 (24 votes)
9 Jun 2014CPOL4 min read 20.9K   109   44  
When should you switch from factory pattern to decorator pattern?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DecoratorPattern
{
    public abstract class PizzaIngredient : Pizza
    {

        public Pizza MyPizza {get; set;}
        public override abstract string GetIngredients();

    }
}

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
Engineer
France France
Living by this code ".. Technology was created to provide solutions ..", i'm a challenge lover, discipline enforcer and a team player. Above all, i'm a software engineer who likes to solve problems through technology.

Comments and Discussions