+ 1
Loop C#
How to loop this Number and letter Ex: 2C I want to show result like this 00 01 02 0A 0B 0C 10 11 12 1A 1B 1C . . . . CC How to write this loop code ?
4 Answers
0
Olek Szczepura oh so great sir ,, but if i want to use like this
string [ ] letter = new string {âAâ,âBâ,âCâ,âDâ,âEâ......};
string[] number =new string {â0â,â1â,â2â,â3â,â5â......};
so i have one TextBox for another people to put Number or Letter combine in it . So what i should i do this case sir?
0
I'm just starting to learn C# but I've camed up with this:
https://code.sololearn.com/c0FFyiFQclYz/?ref=app
You can select top letter and number as well as number of columns.
0
so great sir