I've got an interesting issue with type comparison. I'm attempting to compare an implied type with an explicit type, to test if something is any sort of collection

var obField = value.GetType().InvokeMember(_stCollectionField, 
                              System.Reflection.BindingFlags.GetProperty, 
                              null, value, null);

if (obField.GetType() != typeof(IEnumerable<object>))
{
    return true;
}

During my testing, I can ensure that obField will turn out to be a collection of objects. However, I'm finding that it will always run inside the check and return true, where instead I wish it to skip past that (becasue the two types are equal.)

A little debugging gives me the type of obField as object {System.Collections.Generic.List<System.DateTime>}.

How can I go about matching that type?

Thanks

link|improve this question

1  
If obField is of type List<DateTime> it clearly is not of type IEnumerable<object>... What was your question again? – Daniel Hilgarth Jul 6 '11 at 11:49
List<T> extends IEnumerable<T>, no? – AndyBursh Jul 6 '11 at 11:51
1  
@Andy: True, but "==" does not mean "is extendable from", it means "is equal to" (and the same holds for "!="). Since List<DateTime> and IEnumerable<object> are not equal, "!=" evaluates to true. – Heinzi Jul 6 '11 at 11:54
can you compare the type names? – GlennFerrieLive Jul 6 '11 at 11:54
Good point, Heinzi, I hadn't thought of that, thanks. – AndyBursh Jul 6 '11 at 12:03
feedback

1 Answer

up vote 3 down vote accepted

Use Type.IsAssignableFrom, as used here: Getting all types that implement an interface with C# 3.5

For example:

if (typeof(IEnumerable<object>).IsAssignableFrom(obField.GetType())) { ... }
link|improve this answer
1  
Addition: This will only work in .NET 4, because covariance for interfaces wasn't available earlier. – Daniel Hilgarth Jul 6 '11 at 11:52
Works like a charm, thanks! – AndyBursh Jul 6 '11 at 11:55
@Andy: If you want to test for any sort of collection then you'd probably be better off comparing against the non-generic IEnumerable interface. – LukeH Jul 6 '11 at 13:13
feedback

Your Answer

 
or
required, but never shown

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