提取循环中包含continue的语句封装成方法
demo如下:
private void button1_Click(object sender, EventArgs e) { for(int i=0;i<10;i++) { if (!a(i)) { continue; } this.label1.Text += i.ToString()+"、"; } } public bool a(int i) { if (i == 1) { return false; } else { return true; } }
积累小的知识,才能成就大的智慧,希望网上少一些复制多一些原创有用的答案