我有一個數組可以有1到10個值的數組。根據數組中值的數量,我想選擇10個不同類中的1個,並將數組的值放入類對象中。如何根據數組填充類?
這是我到目前爲止,
Array[] ar;
ar = PopulateTheArray();
int cnt = ar.Count();
Object ob = Activator.CreateInstance(null, "MyObject" + cnt);
有10個爲MyObject類這樣的,
public class MyObject1
{
public string Column1 { get; set; }
}
public class MyObject2
{
public string Column1 { get; set; }
public string Column2 { get; set; }
}
public class MyObject3
{
public string Column1 { get; set; }
public string Column2 { get; set; }
public string Column3 { get; set; }
}
and so on.....
如何循環扔陣列來填充對象,因爲對象是動態創建?
這是一個家庭作業的問題? – 2011-03-17 21:50:55
你想完成什麼,或者這是一項家庭作業? – 2011-03-17 21:51:04
我希望這是作業,我還沒有牢牢掌握動態構建或如何訪問它們。 – Tim 2011-03-17 21:54:02