标签: vb.net
如何从数据表中检索列数据类型大小?
Dim tblProducts as DataTable . . . For i As Integer = 0 To tblProducts.Rows.Count Dim d = tblProducts.Columns(i).DataType ' here How to retrieve the datatype size ?? :( Next