Answers for "c# reflection get property value array"

C#
0

c# reflection get property value array

Array a = (Array)propertyInfo.GetValue(data);
for(int i = 0; i< a.Length; i++)
{
  object o = a.GetValue(i);
}
Posted by: Guest on April-14-2021

Code answers related to "c# reflection get property value array"

C# Answers by Framework

Browse Popular Code Answers by Language