R
Ronald S. Cook
I have a DataTable like
Id Code Value
1 TAB Inventory
2 TAB Marketing
3 GRP Pens
4 ICO Lot
I would like to remove all rows where Code=TAB since I'm done with that
part.
The reason I want to do this is so the DataTable (which will be in memory
fro the entire app session) will be as small as possible.
I could do it in a for loop but is there a better way?
Thanks,
Ron
Id Code Value
1 TAB Inventory
2 TAB Marketing
3 GRP Pens
4 ICO Lot
I would like to remove all rows where Code=TAB since I'm done with that
part.
The reason I want to do this is so the DataTable (which will be in memory
fro the entire app session) will be as small as possible.
I could do it in a for loop but is there a better way?
Thanks,
Ron