here is my code:
for (int i = 0; i < myArray1.Count; i++)
{
foreach (string t in myArray1[i].ToString().Split(' '))
{
ItemKey.AppendText(t);
hs3.Add(t);
}
hs2.IntersectWith(hs3);
foreach (string y in hs2)
{
MessageBox.Show(y);
}
hs2.Clear();
hs3.Clear();
}
hope someone help me...thanks ya..
hope someone help me...thanks ya..
VulpesPosted Apr 5, 2011, 6:37 AM
Sin YeePosted Apr 5, 2011, 10:02 AM