Does static make it slow
.net, c#, oop
Solution
No, it doesn't. Also, .NEt doesn't automatically lock variables just because you access them from differnent parts of the program at the same time. You would have to implement the locking yourself.
Problem
Not sure how it works but I have a question:- Does static make the application slow as same variable or method is shared throughout the application, and while one request is using the method or variable other one has to wait for it to be released.