Trying to implement the decorator pattern in C# from the code in the \"Head First Design Patterns\" book (written in Java).
I am just starting out with C# and am the
Change new to override. Also, m_description should be protected.
new
override
m_description
protected