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)
{

}
link|improve this question

64% accept rate
Use: type.GetProperties() instead – Magnus Jul 15 '11 at 11:05
feedback

2 Answers

up vote 0 down vote accepted

You made a small typo. Instead of type.GetType().GetProperties() try type.GetProperties()

Type type = typeof(Customer);

PropertyInfo[] propertyList = type.GetProperties();          

foreach (PropertyInfo property in propertyList)
{

}
link|improve this answer
ok besides that typo... I CAN NOT hardcode the property Id... there are still properties like Firstname, Lastname etc... I want them all and only! – msfanboy Jul 15 '11 at 11:12
damn that did it type.GetProperties(); my typo is the fault :P – msfanboy Jul 15 '11 at 11:13
@msfanboy then use PropertyInfo idPropInfo = type.GetProperty("Id"); – Eranga Jul 15 '11 at 11:15
feedback
//Limit result to only public Properties...
PropertyInfo[] propertyList = type.GetProperties(BindingFlags.Public);

foreach (PropertyInfo property in propertyList)
{
   if (property.Name.ToUpper() == "ID")
   {
     .... Do your staff....
   }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.