How can one loop thru the read to check is any of the reader string values (all are stings) are not null. If the read return all null then i need to increment: io++
This is kinda what i mean:
foreach (string val in rdr2.)
{
if (rdr2[val].ToString().Length > 0) { io++; }
}
thanks
This is kinda what i mean:
foreach (string val in rdr2.)
{
if (rdr2[val].ToString().Length > 0) { io++; }
}
thanks