1
Answer

get the Inner object values by System.Reflection.PropertyInf

Ask a question
venu k

venu k

10y
1.1k
1
i was getting exception when ever try to read the inner object values at 
 what ever we passing 
Object1 parameter has multiple Objects.

 Collapse | Copy Code
public static void WritePDF<T>(T Object1 ,int RrcordID) {
Type type = typeof(T);

foreach (System.Reflection.PropertyInfo property in type.GetProperties())
{ svalue = type.GetProperty(property.Name).GetValue(Object1, null).ToString();
}
} before this i need to check it and get the inner object value ,How ?

Answers (1)