Answer: Application.Lock();
Application["Akiii"] = "This is the value that is stored";
Application.UnLock();
If you are doing multi-threaded programming then it is better to lock the global variable otherwise it may cause useless data read/write.
Thanks and Regards
Akiii
|
Alert Moderator