Skip to content

Instantly share code, notes, and snippets.

@juristr
Created December 19, 2012 15:09
Show Gist options
  • Save juristr/4337356 to your computer and use it in GitHub Desktop.
Save juristr/4337356 to your computer and use it in GitHub Desktop.
Verify whether an ExpandoObject has a property
private bool HasProperty(string propertyName, ExpandoObject expandoObj)
{
return ((IDictionary<string, object>)expandoObj).ContainsKey(propertyName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment