2016-07-27 46 views

回答

1

沒有測試過這一點,但通過閱讀文檔:

IEnumerable<Dictionary<string, string>> dic = 
    dataTable.Rows.OfType<DataRow>() 
    .Select(row => dataTable.Columns.OfType<DataColumn>() 
        .ToDictionary(col => col.ColumnName, col => row[col] != null ? row[col].ToString() : null)); 

你問一個班輪:)

+0

是的,我也問了一個襯墊:)謝謝。我將在稍後進入辦公室時進行測試。 – Tim

相關問題