删除DataTable中列重复的行

    void DeleteSameRow(DataSet ds)
    {
        ArrayList indexList 
= new ArrayList();
        
// 找出待删除的行索引
        for (int i = 0; i < ds.Tables[0].Rows.Count-1; i++)
        {
            
if (!IsContain(indexList, i))
            {
                
for (int j = i + 1; j < ds.Tables[0].Rows.Count; j++)
                {
                    
if (ds.Tables[0].Rows[i][AccountInfo.Columns.AUName].ToString() == ds.Tables[0].Rows[j][AccountInfo.Columns.AUName].ToString())
                    {
                        indexList.Add(j);
                    }
                }
            }
        }
        
// 根据待删除索引列表删除行
        for (int i = indexList.Count - 1; i >= 0; i--)
        {
            
int index = Convert.ToInt32(indexList[i]);
            ds.Tables[
0].Rows.RemoveAt(index);
        }
    }
    
bool IsContain(ArrayList indexList, int index)
    {
        
for (int i = 0; i < indexList.Count; i++)
        {
            
int tempIndex = Convert.ToInt32(indexList[i]);
            
if (tempIndex == index)
            {
                
return true;
            }
        }
        
return false;
    }
posted @ 2007-03-22 16:53  蛤蟆  阅读(2354)  评论(3)    收藏  举报