G
Guest
I have an InMemory DataTable that I used as a datasource for my grid.
I need to know how to interate through it.
The onlione books say there exist a property called item on the DataRow but
my C# intellisense doesn't show this.
Here is the code so far.
foreach(DataRow dr in dt.Rows)
{
//how do I iterate through the columns of each row in my DataTale (dt)?
{
Thanks
Tom
I need to know how to interate through it.
The onlione books say there exist a property called item on the DataRow but
my C# intellisense doesn't show this.
Here is the code so far.
foreach(DataRow dr in dt.Rows)
{
//how do I iterate through the columns of each row in my DataTale (dt)?
{
Thanks
Tom