R
RSH
Is a "Shared" access modifier in a class Shared across all instantiations in
all sessions, or just the instantiations of the class in the current
session?
If Shared is across all instantiations of a class in all Sessions, what is
the access modifier eqivilent I should be using to "Share" only in the
current session?
Thanks!
Ron
public class test
private shared m_allApproved as boolean
Public Shared Property AllApproved()
Get
Return m_AllApproved
End Get
Set(ByVal Value)
m_AllApproved = Value
End Set
End Property
end class
all sessions, or just the instantiations of the class in the current
session?
If Shared is across all instantiations of a class in all Sessions, what is
the access modifier eqivilent I should be using to "Share" only in the
current session?
Thanks!
Ron
public class test
private shared m_allApproved as boolean
Public Shared Property AllApproved()
Get
Return m_AllApproved
End Get
Set(ByVal Value)
m_AllApproved = Value
End Set
End Property
end class