DataTable properties and methods

T

tshad

s there a good primer on DataTables out there?

Mainly I am looking for an article that lists the properties and methods
(with examples) on the different properties you can use with a DataTable.
For example:

Rows
Rows.Count
Clone
CopyTo
NewRow
Columns.Count
ColumnName
Clear()
Rows.Clear()
DataColumn
DataRow
DataRow()

I am looking for mainly a reference article that has all the properties and
methods. I always need to google the DataTable to find the needed
properties and methods because I can't remember all the formats for them.

Thanks,

Tom
 
B

Brian Gideon

s there a good primer on DataTables out there?

Mainly I am looking for an article that lists the properties and methods
(with examples) on the different properties you can use with a DataTable.
For example:

Rows
Rows.Count
Clone
CopyTo
NewRow
Columns.Count
ColumnName
Clear()
Rows.Clear()
DataColumn
DataRow
DataRow()

I am looking for mainly a reference article that has all the properties and
methods. I always need to google the DataTable to find the needed
properties and methods because I can't remember all the formats for them.

Thanks,

Tom

The first place I would look is the MSDN documentation. That might
sound obvious or patronizing (though I hope you don't take it that
way), but seriously, there's a lot of good information in there.
 

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

Top