The Code below resets form labels to "0". Out of curiosity, I am trying to figure out how to access only certain items rather than every item in the List. The foreach function works great here but in other parts of the code I would like to access and modify these objects diferently
For example how could I set every other field to "0" or set only the last or first three to some value, etc.
// Set the form Labels to "0"
private void btnClear_Click(object sender, EventArgs e)
{
// Create List of Labels for modifying form
new List<Label>() { lbl1, lbl2, lbl3, lbl4, lbl5, lbl6 }.ForEach(p => p.Text = "0");
}
Thank You
Update:
Well after lots of reading and testing I came back to the most basic method for selecting every other item in the list.
// Set the form Labels to "0"
private void btnClear_Click(object sender, EventArgs e)
{
// Create List of Labels for modifying form
List<Label> lbl = new List<Label>() { lbl1, lbl2, lbl3, lbl4, lbl5, lbl6 };
int x =1; // Set to get every other label. 0 = even, 1 = odd
while (x < lbl.Count)
{
lbl[x].Text = "0";
x = x + 2;
}
@Jonathan Wood is there a method to this with the
items.ForEach(p => { some code(), p.Text = "0"; });