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;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top