List
List
now i want result in third list like..
List
I have use
foreach (var t in purchaseResult)
{
for (int counter = 0; counter < poRecive.Count; counter++)
{
if (t.RecNo == poRecive[counter].RecNo)
{
poRecive.Remove(t);
}
}
}
but this code not removes data....
VulpesPosted Apr 27, 2013, 6:35 AM
List
Dharmendra SinghPosted May 2, 2013, 1:11 AM