vote up 0 vote down star

I am getting a "Nullable object must have a value" when getting a value from a Nullable DateTime property via reflection

PropertyInfo[] properties = control.GetType().GetProperties(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public);
foreach (PropertyInfo property in properties)
{
   object o = new object();
   Object o = property.GetValue(control, null);
}

How do I get around this?

flag

Can you provide a more complete repo code snippet? – spoon16 Oct 3 '08 at 0:47

closed as no longer relevant by benPearce Oct 3 '08 at 1:04

1 Answer

vote up 0 vote down

I have since found the problem is databinding related, so I will close this question.

link|flag
instead of closing the question it would be great if you posted the solution and left the question open – spoon16 Oct 3 '08 at 1:37
the question was wrong. I have found that the problem was coming from another spot in my code which was actually a bug – benPearce Oct 3 '08 at 3:35

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