0
Hello,
Yes, you are correct, static objects are accessible across
threads and shared among all instances of a class. In a multiuser environment,
the same static variables are being used across all sessions. In the article
the static variables are not thread safe, if the DataSet value is not user
specific then there will be no problem. Otherwise there will be a concurrency risk
when multiple users are using the application at the same time. The value set
by the first user will be overwritten by the second user and so forth.
Thanks,
Bryian Tan