csharp get property using string

Code Example - csharp get property using string

                
                        public static object GetPropValue(object src, string propName)
 {
     return src.GetType().GetProperty(propName).GetValue(src, null);
 }