Skip to content

Instantly share code, notes, and snippets.

@jrgcubano
Forked from angelovstanton/Program.cs
Created March 3, 2016 21:27
Show Gist options
  • Save jrgcubano/d872e81e1260c2691187 to your computer and use it in GitHub Desktop.
Save jrgcubano/d872e81e1260c2691187 to your computer and use it in GitHub Desktop.
dynamic samplefootballLegendObject = new ExpandoObject();
samplefootballLegendObject.FirstName = "Joro";
samplefootballLegendObject.LastName = "Beckham-a";
samplefootballLegendObject.Team = "Loko Mezdra";
samplefootballLegendObject.Salary = 380.5m;
samplefootballLegendObject.AsString = new Action(
() =>
Console.WriteLine("{0} {1} {2} {3}",
samplefootballLegendObject.FirstName,
samplefootballLegendObject.LastName,
samplefootballLegendObject.Team,
samplefootballLegendObject.Salary)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment