Skip to content

Instantly share code, notes, and snippets.

@mehmetyilmaz001
Created June 29, 2015 14:22
Show Gist options
  • Save mehmetyilmaz001/238d50fbea598b544e59 to your computer and use it in GitHub Desktop.
Save mehmetyilmaz001/238d50fbea598b544e59 to your computer and use it in GitHub Desktop.
mali expando dynamic object
public static dynamic GetDynamicObject(Dictionary<string,object> properties) {
var dynamicObject = new ExpandoObject() as IDictionary<string, Object>;
foreach (var property in properties) {
dynamicObject.Add(property.Key,property.Value);
}
return dynamicObject;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment