M
Mike Edgewood
Is there a simple way, shortcut, or macro to create a property
skeletons?
I would live to be able to type a name and a type and have the property
created based on that info.
Private mLastName as String
Public Property LastName() as String
Get
Return mLastName
End Get
Set (ByVal value as String)
mLastName = value
End Set
End Property
Is this possible?
skeletons?
I would live to be able to type a name and a type and have the property
created based on that info.
Private mLastName as String
Public Property LastName() as String
Get
Return mLastName
End Get
Set (ByVal value as String)
mLastName = value
End Set
End Property
Is this possible?