Hey,
I have four labels in a form: label1, label2, label3, and label4. Now, if this was VB.NET, I would have used the following code to change their contents without having to type the code for each one separately:
For I = 1 To 4
Me.Controls("label" & I).Text = "Some text"
Next
I was wondering if there is an equivalent method to perform this task in C# as well.
Thank you for your time :)