I have a datatable that is created on the fly. I need to be able to delete a row from it based on a value that is passed into a method as an argument.
sort of like:
private void deletion(string val){
then delete from the datatable where column 4 = val
}
Can this be done? If so how?
sort of like:
private void deletion(string val){
then delete from the datatable where column 4 = val
}
Can this be done? If so how?