C
Chet
I have a DataRow from a table in a data set. One of the columns has a
name of "COMPANY_TICKET_ID" and I'm trying to get this column's value
with the following:
foreach( DataRow[] row in ds.Tables[ 0 ].Rows )
Console.WriteLine( row[ "COMPANY_TICKET_ID" ].ToString() );
I get an error - cannot implicity convert type 'string' to 'int'.
What am I missing? Thanks.
name of "COMPANY_TICKET_ID" and I'm trying to get this column's value
with the following:
foreach( DataRow[] row in ds.Tables[ 0 ].Rows )
Console.WriteLine( row[ "COMPANY_TICKET_ID" ].ToString() );
I get an error - cannot implicity convert type 'string' to 'int'.
What am I missing? Thanks.