A
Arvi
Hi,
Is there any way to check for the duplicated (fluteid) records in the
dataset other than the following method?
i need to avoid goin thru all the records everytime (squaremethod) instead
i want to check with the triangle method. can someone help me here?
foreach (Dataset.FluteRow row in dataSet.Flute.Rows)
{
idToCheck = row.FluteID;
linkToCheck = row.FluteLink;
foreach (Dataset.FluteRow row1 in dataSet.Flute.Rows)
{
if(row1.FluteID == idToCheck && row1.FluteLink != linkToCheck)
{
duplicateID.Add(row1.FluteID);
}
}
}
Is there any way to check for the duplicated (fluteid) records in the
dataset other than the following method?
i need to avoid goin thru all the records everytime (squaremethod) instead
i want to check with the triangle method. can someone help me here?
foreach (Dataset.FluteRow row in dataSet.Flute.Rows)
{
idToCheck = row.FluteID;
linkToCheck = row.FluteLink;
foreach (Dataset.FluteRow row1 in dataSet.Flute.Rows)
{
if(row1.FluteID == idToCheck && row1.FluteLink != linkToCheck)
{
duplicateID.Add(row1.FluteID);
}
}
}