Is this possible? Here\'s what I\'m trying:
public ActionResult Index() { dynamic p = new { Name = \"Test\", Phone = \"111-2222\" };
On .NET 4.0 Anonymous types can easily be converted to ExpandoObjects and thus all the problems is fixed with the overhead of the conversion itself. Check out here