I put some values in a datatable from xml and I have values that are repeated as well as some case sensitive values
ex: Cat, Elephant, Took, Program, Some, PROGRAM, Cat, Dog
so I use one condition like
if (!(FindRow.Rows.Contains(val)))
{
FindRow.Rows.Add(val);
}
I want my datatable to have both Program, and so Program, and should not have two cat values, but it only accepts oneProgram
source
share