Skip to content

Instantly share code, notes, and snippets.

@gluschenko
Created November 22, 2015 20:58
Show Gist options
  • Save gluschenko/41ffe1666b24304adf24 to your computer and use it in GitHub Desktop.
Save gluschenko/41ffe1666b24304adf24 to your computer and use it in GitHub Desktop.
public static object GetPropValue(object src, string propName)
{
return src.GetType().GetProperty(propName).GetValue(src, null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment