c# remove duplicate column values from a datatable without using linq...
        Posted  
        
            by Pandiya Chendur
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Pandiya Chendur
        
        
        
        Published on 2010-05-24T06:05:41Z
        Indexed on 
            2010/05/24
            6:11 UTC
        
        
        Read the original article
        Hit count: 469
        
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...
© Stack Overflow or respective owner