int h = 0;
foreach(string hitem in Hitems)
{
if (Kitems.Contains(Hitems[h]) == false)
{
textBox3.Text = textBox3.Text + Hitems[h] + Environment.NewLine;
}
h = h + 1;
}
Kitems and Hitems are List<string> type but when comparing the strings I get the wrong results any help?
This is just a Program I'm trying to get working for a Web Browser game to see what Items one would be missing.
Never mind I had a slow moment I was using the List Backwards Sorry.
This post has been edited by GregBryant: 20 May 2009 - 03:42 PM

New Topic/Question
Reply



MultiQuote



|