DataTable properties and methods

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • tshad

    #1

    DataTable properties and methods

    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


  • Brian Gideon

    #2
    Re: DataTable properties and methods

    On Jun 20, 4:24 pm, "tshad" <t...@home.comw rote:
    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.

    Comment

    Working...