S
SStory
I want to define a base class that has a property, "FirstName"
that is public readonly
but can be set by itself and other objects that inherit this baseclass
(protected)
I can't seem to do that.
The docs show ..
Property Firstname
<attributes>Get
End Get
<attributes>Set
End Set
End property
I wanted to
Public Get
and
Protected Set
but this is not allowed.
Any ideas appreciated..
that is public readonly
but can be set by itself and other objects that inherit this baseclass
(protected)
I can't seem to do that.
The docs show ..
Property Firstname
<attributes>Get
End Get
<attributes>Set
End Set
End property
I wanted to
Public Get
and
Protected Set
but this is not allowed.
Any ideas appreciated..