vote up 2 vote down star

I have a method I'm writing that uses reflection to list a class's static properties, but I'm only interested in those that are of a particular type (in my case, the property must be of a type derived from DataTable). What I would like is something like the if() statement in the following (which presently always returns true):

PropertyInfo[] properties = ( typeof(MyType) ).GetProperties( BindingFlags.Public
    | BindingFlags.Static );

foreach( PropertyInfo propertyInfo in properties ) {
    if( !( propertyInfo.PropertyType is DataTable ) )
        continue;

    //business code here
}

Thanks, I'm stumped.

flag

3 Answers

vote up 7 vote down check

You need to use Type.IsAssignableFrom instead of the "is" operator.

This would be:

if( !( DataTable.IsAssignableFrom(propertyInfo.PropertyType) )

DataTable.IsAssignableFrom(propertyInfo.PropertyType) will be true if PropertyType is a DataTable or a subclass of DataTable.

link|flag
vote up 1 vote down
if( !( propertyInfo.PropertyType.isSubClassOf( typeof(DataTable) ) )
 continue;

I think that should do it.

link|flag
2  
That will fail if PropertyType is a DataTable, though. – Reed Copsey Jul 6 at 18:01
1  
I didn't know that, makes sense though. – Kazar Jul 6 at 18:08
vote up 1 vote down
if (!(typeof(DataTable).IsAssignableFrom(propertyInfo.PropertyType)))

The ordering here perhaps seems a little backwards, but for Type.IsAssignableFrom, you want the type you need to work with to come first, and then the type you're checking.

link|flag

Your Answer

Get an OpenID
or

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