Can you try the below
DT.AsEnumerable() _
.GroupBy(Function(row) row.Field(Of String)("Name") & row.Field(Of Integer)("Age") & row.Field(Of String)("City")) _
.Select(Function(Group) Group.First()) _
.CopyToDataTable()
Output:
Cheers!!