como crear una tabla de caracteres dentro de una structura

30/10/2003 - 11:42 por Rubén | Informe spam
en VB

TYPE tipo
DIM nombre AS STRING * 10
DIM apellidos AS STRING * 20
END TYPE


como sería en VB net ?????

PUBLIC STRUCT tipo
PUBLIC nombre AS ?????????
PUBLIC apellidos AS ?????????
END STRUCT
 

Leer las respuestas

#1 Horacio Del Castillo
30/10/2003 - 18:01 | Informe spam
Aqui va:

Structure Tipo
<VBFixedString(10)> Public Nombre As String
<VBFixedString(20)> Public Apellido As String
End Structure

Saludos

HRC

en VB

TYPE tipo
DIM nombre AS STRING * 10
DIM apellidos AS STRING * 20
END TYPE


como sería en VB net ?????

PUBLIC STRUCT tipo
PUBLIC nombre AS ?????????
PUBLIC apellidos AS ?????????
END STRUCT


.

Preguntas similares