Skip to content

Instantly share code, notes, and snippets.

@theorigin
Created August 4, 2012 15:09
Show Gist options
  • Save theorigin/3258274 to your computer and use it in GitHub Desktop.
Save theorigin/3258274 to your computer and use it in GitHub Desktop.
Json TDD Refactor
private object GetValue(object source, string propertyName)
{
return source.GetType().GetProperty(propertyName).GetValue(source, null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment