vote up 1 vote down star

I have a class like this:

class ItemList
{
    Int64 Count { get; set; }
}

and when I write this:

ItemList list = new ItemList ( );

Type type = list.GetType ( );
PropertyInfo [ ] props = type.GetProperties ( );

I get an empty array for props.

Why? Is it because GetProperties doesn't include automatic properties?

flag

56% accept rate

1 Answer

vote up 8 vote down check

The problem is that GetProperties will only return Public properties by default. In C#, members are not public by default (I believe they are internal). Try this instead

var props = type.GetProperties(BindingFlags.Instance | BindingFlags.NonPublic);

The BindingFlags enumeration is fairly flexible. The above combination will return all non-public instance properties on the type. What you likely want though is all instance properties regardless of accessibility. In that case try the following

var flags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic;
var props = type.GetProperties(flags);
link|flag
Thanks, didn't realise that. Also how are you able to provide multiple options for a single argument? Are BindingFlags bits that you shift? – Joan Venge Aug 7 at 18:15
1  
@Joan, yes. BindingFlags is an enumeration which uses bit flags you can manipulate with |. It's not providing multiple arguments, merely creating an enumeration value which has various bit combinations set. – JaredPar Aug 7 at 18:16
1  
Joan: Binding flags are a flags enum, so you can use | to pass multiple flags into the function. – Reed Copsey Aug 7 at 18:17
Thanks Jared and Reed. – Joan Venge Aug 7 at 18:21
1  
For reference: msdn.microsoft.com/en-us/library/… – annakata Aug 7 at 18:24
show 1 more comment

Your Answer

Get an OpenID
or

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