-1
ERROR發生在for循環編譯錯誤:無法轉換隱式int類型爲bool
List<string> computers = Global.getAllComputers(Environment.UserDomainName);
computers.Sort();
if (dataGridView1.Rows.Count == 1)
{
foreach (var s in computers)
dataGridView1.Rows.Add(s);
}
else
{
foreach (string s in computers)
{
for (int i = 0; (dataGridView1.Rows.Count - 1); i++)
{
if (s.ToUpper() == dataGridView1.Rows[i].Cells[0].Value.ToString().ToUpper())
continue;
else
dataGridView1.Rows.Add(s);
}
}
}
instaed而問題是什麼? – Jon
對不起,我確定了這個問題。我沒有把我<在for循環。 – qasali
標題是問題。大聲笑 – qasali