How can I get the in my propertyList the Id Property? I get about 60 Properties I have never heard of...
class Customer
{
public int Id {get;set;}
}
Type type = typeof(Customer);
PropertyInfo[] propertyList = type.GetType().GetProperties();
foreach (PropertyInfo property in propertyList)
{
}
type.GetProperties()instead – Magnus Jul 15 '11 at 11:05