Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/12/2006, 15:26
Stream
 
Fecha de Ingreso: mayo-2004
Ubicación: Guadalajara, Jalisco, México
Mensajes: 724
Antigüedad: 20 años, 7 meses
Puntos: 6
Re: arreglos en vb.net

Dim arreglo As New ArrayList

If arreglo.IndexOf(6) = -1 Then
arreglo.Add(6)
End If

If arreglo.IndexOf(6) = -1 Then
arreglo.Add(6)
End If
If arreglo.IndexOf(5) = -1 Then
arreglo.Add(5)
End If

arreglo.Sort()