The ExpandoObject Class
Create objects that can dynamically extend throughout the program execution.
We'll cover the following...
Introduction
One of the most interesting features of the DLR resides in the System.Dynamic namespace: the ExpandoObject class. This type lets us create dynamic objects that can ...
Ask