Expando Object and dynamic property pattern

Posted by Al.Net on Programmers See other posts from Programmers or by Al.Net
Published on 2012-06-22T19:13:55Z Indexed on 2012/06/22 21:25 UTC
Read the original article Hit count: 426

Filed under:
|
|

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?

© Programmers or respective owner

Related posts about c#

Related posts about .NET