answersLogoWhite

0

Properties are like variables, but they use a Get and Set. This is how to link a private variable to a public property (i=variable, IProp=property)

Private i as String = ""

Public Property IProp()

Get
Return i
End Get

Set(Val as String)
i=Val
End Set

End Property

User Avatar

Wiki User

15y ago

What else can I help you with?