Consider my datatable,
Id Name MobNo
1 ac 9566643707
2 bc 9944556612
3 cc 9566643707
How to remove the row 3
which contains duplicate MobNo
column value in c# without using LINQ. I have seen similar questions on SO but all the answers uses LINQ.