Find duplicate record

Hey!

Try this…

From p in dt.Select()
where( From q in dt.Select()
where string.Join(",",q.ItemArray).Equals(string.Join(",",p.ItemArray))
Select q).ToArray.Count>1
Select p).ToArray.CopyToDataTable

References:

Regards,
NaNi