C ª#:
private string studentName;
Al final de la línea después del punto y coma (;) Simplemente presione
Ctrl + R + E
Mostrará una ventana emergente como esta: al
hacer clic en Aplicar o presionar ENTRAR generará el siguiente código de propiedad:
public string StudentName
{
get
{
return studentName;
}
set
{
studentName = value;
}
}
En VB:
Private _studentName As String
Al final de la línea (después de String) Presione, asegúrese de colocar _ (subrayado) al comienzo porque agregará un número al final de la propiedad:
Ctrl + R + E
Aparecerá la misma ventana:
Al hacer clic en Aplicar o presionar ENTRAR, generará el siguiente código de propiedad con un número al final como este:
Public Property StudentName As String
Get
Return _studentName
End Get
Set(value As String)
_studentName = value
End Set
End Property
Con las propiedades numéricas son así:
Private studentName As String
Public Property StudentName1 As String
Get
Return studentName
End Get
Set(value As String)
studentName = value
End Set
End Property