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?
