DataRow indexer and duplicate column names

  • Thread starter Thread starter ataylor
  • Start date Start date
A

ataylor

Anyone know the details on using a DataRow indexer with a column name
when the data table has duplicate column names? I assume that the
indexer will return the first column with given name, but I would love
to know the specifics.

Thanks.
 
All columns in a data table must have unique names. It is not possible to
have a situation where 2 columns would have the same name.
 
Back
Top