配列とループがあります。現在のアイテムのインデックスを見つけて、そのアイテムをリストボックスに表示するかどうかを決定できるようにしたいのですが、
string[] papers = new string[7] { "Software Development", "Data Fundamentals", "Information and Communication", "User Support", "Web Fundamentals", "Network Fundamentals", "Computer Fundamentals" };
for (int i = 0; i < papers.Length; i++)
{
int n=papers.Length;
if (n==2)
{
continue;
}
else
{
listView1.Items.Add(papers[i]);
}
}
しかし、私はそれを達成することができません.誰かが私を助けてくれますか.
ありがとうございました