2015-07-19 65 views

回答

0

您可以從DataColumn.DataType屬性中獲取類型。

For Each dc as DataColumn in DataTable.Columns) 
{ 
    ' dc.DataType.ToString() is the name of the type of data in the column 
} 
相關問題