M
Michael G. Schneider
Suppose there is a ASP dot.net web application and a dot.net class library
(written with vb dot.net). The web application references the class library.
The class library contains a ...
Public Class test
Public Shared Property() As String
...
End Property
End Class
Of course, the web application is used by many user in parallel. Now, will
the above property exists once for each user, or will it exist only once for
all users?
Michael G. Schneider
(written with vb dot.net). The web application references the class library.
The class library contains a ...
Public Class test
Public Shared Property() As String
...
End Property
End Class
Of course, the web application is used by many user in parallel. Now, will
the above property exists once for each user, or will it exist only once for
all users?
Michael G. Schneider