var table = project.Tables["tableName"];
List<string> Bufer = new List<string>();
for(int i = table.RowCount - 1; i >= 0; i--)
{
string str = table.GetCell("A", i).Trim() + table.GetCell("J", i).Trim();
if(Bufer.Contains(str))
{
table.DeleteRow(i);
}
else Bufer.Add(str);
}