我希望将对象的商店值放入数组中,对其进行排序,然后将其存储回同一个对象。数组名称是“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);
}