C# 4.0 Dynamic vs Expando… where do they fit?
Expando is a dynamic type to which members can be added (or removed) at runtime. dynamic is designed to allow .NET to interoperate with types when interfacing with dynamic typing languages such as Python and JavaScript. So, if you need to handle a dynamic type: use dynamic and if you need to handle dynamic data … Read more