J
Jameson
Hi,
I have a property defined something like:
Public Property Index As Integer
Get
Return m_Index
End Get
Set (value As Integer )
m_Index = Value
End Set
End Property
I want all classes to be able to access the "Get" (hence public) but only a
few classes to be able to access the "Set". How can I specify which classes
can access Set in this context?
Thanks.
I have a property defined something like:
Public Property Index As Integer
Get
Return m_Index
End Get
Set (value As Integer )
m_Index = Value
End Set
End Property
I want all classes to be able to access the "Get" (hence public) but only a
few classes to be able to access the "Set". How can I specify which classes
can access Set in this context?
Thanks.