Shell   27-06-2023, 20:14
#1
Buenas!

¿ Saben que una misma propiedad puede tener hasta tres nombres sinónimos ?. (identificadores)

Clase
Código:
Property text, document, paper As String
Private htext As String

Private Function text_Read() As String

  Return htext

End

Private Sub text_Write(Value As String)

  htext = Value

End

Main:

Código:
Public Sub Main()

Dim testThing As New Thing

testThing.text = "Hello World!"

Print testThing.text
Print testThing.document
Print testThing.paper

End

Salida:
 
Cita: 
Hello World!
Hello World!
Hello World!
 
Cita:Property Synonymous
PROPERTY [ READ | WRITE ] Identifier [ , Synonymous1 [ , Synonymous2 ... ] ] AS Datatype

SINCE 3.1
It is possible to declare up to three synonymous to the declared properties by using the second syntax.

Saludos

"El conocimiento es la mejor inversión que se puede hacer" - Abraham Lincoln
  
Usuarios navegando en este tema: 1 invitado(s)
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.