blah blah blah is here! blah blah » Close

0
votes
1 answers

can't fingure this simple loop out in c#

string[] origArray = new string[] { "b", "c", "d" , "e"}; for(int i = 0; i< origArray.Length; i++) { lblOrig.Text = origArray[i] ; rt ...

Feedback