Conversion of Property & Get in Class

drj

Member
Licensed User
Longtime User
Hi ,

I am converting a class to this platform from VB.

I am not sure how to handle the following.

Public Property Expression As String
Get
Expression = Expr
End Get
Set(value As String)

End Set
End Property

Public Property VarTop As Long
Get
VarTop = VTtop
End Get
Set(value As Long)

End Set
End Property


Does anyone have any experience converting this?

i.e. Property and Get and Set statements?
 
Top