Check out example codes for "c# get property using string". It will help you in understanding the concepts better.
Code Example 1
public static object GetPropValue(object src, string propName)
{
return src.GetType().GetProperty(propName).GetValue(src, null);
}
Learn ReactJs, React Native from akashmittal.com