csharp get object property value by name

Code Example - csharp get object property value by name

                
                        return car.GetType().GetProperty(propertyName).GetValue(car, null);
                    
                
 

get property value from object csharp

                        
                                Type myType = myObject.GetType();
IList<PropertyInfo> props = new List<PropertyInfo>(myType.GetProperties());

foreach (PropertyInfo prop in props)
{
    object propValue = prop.GetValue(myObject, null);

    // Do something with propValue
}