Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/02/2010, 05:27
Avatar de freegirl
freegirl
Colaborador
 
Fecha de Ingreso: octubre-2003
Ubicación: Catalonia
Mensajes: 4.334
Antigüedad: 20 años, 7 meses
Puntos: 156
Respuesta: Revisar numeros repetidos en C#

Con "Right"

Ejemplo:
Cita:
Dim myArray(2) As String
myArray(0) = 123
myArray(1) = 245
myArray(2) = 555
For x As Integer = 0 To 2
If Microsoft.VisualBasic.Right(myArray(x).ToString, 2) = Microsoft.VisualBasic.Right(Me.TextEdit1.Text, 2) Then
MsgBox("Encontrado")
End If
Next