get property list of class c# code example
Example 1: c# get property type of list
var obj = new PropClassDemo();
foreach (PropertyInfo prop in obj.GetType().GetProperties())
{
if(prop.PropertyType != typeof(string) && typeof(IEnumerable).IsAssignableFrom(prop.PropertyType))
{
Console.Writeline("This prop's type is Ienumerable");
}
}
//Note: string is an ienumerable too
Example 2: c# get list of all class fields
using System.Reflection;
FieldInfo[] property_infos = typeof(Player).GetFields();