2012-06-14 149 views
0

我有一個二維數組object[,] data;。我想將我的對象的第一列轉換爲list<string>list<object>。在這裏你有我的代碼:數據[,]到列表<string>或列表<object>在c#

List<string> resultsFields = new List<string>(); 

object tmp = oRtx.get_ListFields(this.Instrument.ElementAt(i).Key.ToString(), RT_FieldRowView.RT_FRV_EXISTING, RT_FieldColumnView.RT_FCV_VALUE); 
if (tmp != null) 
{ 
    object[,] data = (object[,])Convert.ChangeType(tmp, typeof(object[,])); 
    for (int j = 0; j < numItems; j++) 
     resultsFields.Add(data[j, 0].ToString()); 
} 
在這段代碼

,我加上data[j, 0]每個物品進入我的列表。 我想知道如果有我的對象([0])的第一列轉換成一個列表

回答

2

唯一的性能改善,我可以看到的是創建列表<>規定容量更快的方法:

List<string> resultsFields = new List<string>(data.GetLength(0));