How do you read an Array?

  • Thread starter Thread starter Doug
  • Start date Start date
D

Doug

Hi,

I want to take an array and make it into a datatable and load it's content
and setup the columns. How can I do this? A quick example would be great
as well. Thanks in advance.

Doug
 
Actually you don't need a DataTable if you only want to display the contents
of the array in a DataGrid. You can easily show the contents like this:

DataGrid1.Datasource = myArray;
 
Back
Top