2
我正在嘗試獲取對象的所有DateTime和Nullable < DateTime>屬性。我正在使用以下lamda表達式,但它返回0結果。這樣做的正確方法是什麼?在T obj中使用反射獲取所有DateTime和Nullable <DateTime>屬性使用反射
Type t = obj.GetType();
// Loop through the properties.
PropertyInfo[] props = t.GetProperties()
.Where(p => p.GetType() == typeof(DateTime) || p.GetType() == typeof(Nullable<DateTime>)).ToArray();