Hola
Jaja, ahora queda más claro, gracias
S2s
Explicación para añadir ceros delante de un número:
String.Format("{0}", 5) ---> devuelve "5"
String.Format("{0} {1}", 5, 25) ---> devuelve "5 25"
String.Format("{0}, {1}", 5, 25) ---> devuelve "5, 25"
String.Format("{0:00}", 5) ---> devuelve "05"
String.Format("{0:00}", 25) ---> devuelve "25"
String.Format("{0:00} {1:00}", 5, 25) ---> devuelve "05 25"
String.Format("{0:00} {1:00} {2:00}" , 5, 25, 8) ---> devuelve "05 25 08"
String.Format("{0:00}, {1:00}, {2:00}" , 5, 25, 8) ---> devuelve "05, 25, 08"
Jaja, ahora queda más claro, gracias
Código (vbnet) [Seleccionar]
Dim NumElementos As IEnumerable(Of Integer) = {1, 3, 84, 99}, Secuencia As String = Nothing
For Each N As Integer In NumElementos
For I As Integer = 0 To NumElementos.Count - 1
Secuencia += String.Format("{0:00}, {1:00}{2}", N, NumElementos(I), Environment.NewLine)
Next
Next
MessageBox.Show(Secuencia)
S2s
Explicación para añadir ceros delante de un número:
String.Format("{0}", 5) ---> devuelve "5"
String.Format("{0} {1}", 5, 25) ---> devuelve "5 25"
String.Format("{0}, {1}", 5, 25) ---> devuelve "5, 25"
String.Format("{0:00}", 5) ---> devuelve "05"
String.Format("{0:00}", 25) ---> devuelve "25"
String.Format("{0:00} {1:00}", 5, 25) ---> devuelve "05 25"
String.Format("{0:00} {1:00} {2:00}" , 5, 25, 8) ---> devuelve "05 25 08"
String.Format("{0:00}, {1:00}, {2:00}" , 5, 25, 8) ---> devuelve "05, 25, 08"