![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
04/02/2010, 05:27
|
![Avatar de freegirl](http://static.forosdelweb.com/customavatars/avatar43123_3.gif) | Colaborador | | Fecha de Ingreso: octubre-2003 Ubicación: Catalonia
Mensajes: 4.334
Antigüedad: 21 años, 4 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 |