Yoda and the Decorator Pattern: A Lesson for Luke
// Base class
public abstract class Lightsaber
{
public abstract void Assemble();
}
// Concrete implementation of the base class
public class StandardLightsaber : Lightsaber
{
public override void Assemble()
{
Console.WriteLine("...
zahere.com1 min read