Expando Object and dynamic property pattern
- by Al.Net
I have read about 'dynamic property pattern' of Martin Fowler in his site under the tag 1997 in which he used dictionary kind of stuff to achieve this pattern.
And I have come across about Expando object in c# very recently. When I see its implementation, I am able to see IDictionary implemented.
So Expando object uses dictionary to store dynamic properties and is it what, Martin Fowler already defined 15 years ago?