Answers for "Get properties and values from unknown object"

C#
1

Get properties and values from unknown object

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
}
Posted by: Guest on January-06-2021

Code answers related to "Get properties and values from unknown object"

C# Answers by Framework

Browse Popular Code Answers by Language