我想一個方法返回包含兩個以上,它們是具有兩種不同的數據類型,如清單列表: 如何將列表中包含不同數據類型的列表作爲子列表?
List<List<object>> parentList = new List<List<object>>();
List<string> childList1 = new List<string>();
List<DataRow> childList2 = new List<DataRow>();
parentList.Add(childList1);
parentList.Add(childList2);
return parentList;
按
上面的代碼中,我得到一個錯誤的最佳重載對於「System.Collections.Generic.List>。新增(System.Collections.Generic.List)」的方法匹配具有一些無效參數
請任何人都建議我來處理這個最好的辦法。
感謝
爲什麼你想這樣做? –
我必須將這些列表發送給某種生成模板,有沒有其他方法可以做到這一點? –
查看我的回答:您可以使用ArrayList –