I have a in-memory DataTable and I need to mark the duplicates ….. for example ..
From

To

I would probably do something like ..
For each dtrow in dt.rows
If dtrow("Country") Is one of Duplicates then
dtrow("Country") += "*"
end if
Next
Sorry for asking so many questions … My head is burnt .. nothing came out .. and this project is needing to finish very soon ..
You could use
LINQ-to-DataTable:Or with C# syntax: