考虑我的数据表,

Id  Name  MobNo
1   ac    9566643707
2   bc    9944556612
3   cc    9566643707


如何在不使用LINQ的情况下删除c#中包含重复的3列值的行MobNo。我在SO上看到过类似的问题,但所有答案都使用LINQ。

最佳答案

以下方法做了我想要的...。

public DataTable RemoveDuplicateRows(DataTable dTable, string colName)
    {
        Hashtable hTable = new Hashtable();
        ArrayList duplicateList = new ArrayList();

        //Add list of all the unique item value to hashtable, which stores combination of key, value pair.
        //And add duplicate item value in arraylist.
        foreach (DataRow drow in dTable.Rows)
        {
            if (hTable.Contains(drow[colName]))
                duplicateList.Add(drow);
            else
                hTable.Add(drow[colName], string.Empty);
        }

        //Removing a list of duplicate items from datatable.
        foreach (DataRow dRow in duplicateList)
            dTable.Rows.Remove(dRow);

        //Datatable which contains unique records will be return as output.
        return dTable;
    }

关于c# - 在不使用LINQ的情况下从数据表中删除重复的列值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2895066/

10-12 03:29