将对象值分配给数组

时间:2016-06-04 05:40:25

标签: c#

我希望将对象的商店值放入数组中,对其进行排序,然后将其存储回同一个对象。数组名称是“splitup”,我将值存储在名为“val”的变量中。 securityAllocationVendorList是我获取值的列表。

double[] splitup;
Type typefile = securityAllocationVendorList.GetType();
PropertyInfo[] properties = typefile.GetProperties();
foreach (PropertyInfo property in properties)
{
    var name = property.Name;
    var val = property.GetValue(securityAllocationVendorList, null);
}

0 个答案:

没有答案