I used the following code using DAO to populate arrays with table's field name and field description.

VB Code:
  1. Dim rsReport as DAO.RecorrSet
  2. rsReport = dbDatabase.OpenRecordset("Table1")
  3. For Idx As Short = 1 To rsReport.Fields.Count - 1
  4.     FieldNames(Idx) = rsReport.Fields(Idx).Name
  5.     Descriptions(Idx) = rsReport.Fields(Idx).Properties("Description").Value
  6. Next

How to achieve the same result using ADO.Net?

Please guide

Regards