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
obFieldis of typeList<DateTime>it clearly is not of typeIEnumerable<object>... What was your question again? – Daniel Hilgarth Jul 6 '11 at 11:49List<DateTime>andIEnumerable<object>are not equal, "!=" evaluates to true. – Heinzi Jul 6 '11 at 11:54