I am having one property called Students which is of type List.
List
In reflection i can get the value of Students Property.
Now the p
The way you tried is, is the right one. You just need to fix your code and cast the return value from GetValue:
GetValue
var collection = (List)studentPro.GetValue(studentObj,null); foreach(var item in collection) { if(item.StudentID == 33) //Do stuff }