Hello everyone, I need small help with arrays, been smashing head whole night getting it work, so if anyone know solution for this please let me know here or post example snippet.
So i have example code:
Dim housing() As String = {"House", "Flat"}
Dim people() As String = {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10"}
Now i need help how to make third array as:
House-01
House-02
House-03
...
House-10
Flat-01
Flat-02
...
Flat-10
Ye it has to have 0 before first 9 numbers :/