I must be doing something wrong but for whatever the reason is, when I loop string characters in an array and display each character in a label only shows the last letter "E".
private void LoopText()
{
string[] s = new string[]{"A", "B", "C", "D", "E" };
for( int i = 0; i < s.Length; i++)
{
this.lblOneLetter.Text = s [i];
for (int j = 0; j < 10000000; j++) {
//wait
}
}
}
Could someone please tell me why it behaves like that and how to fix it?