I have something like this:
...
public partial class MyPage : System.Web.UI.Page
{
private static string _code = null;
...
Will the _code
variable be shared with everyone on my application who loads MyPage
?
This question is not a Duplicate
The possible duplicate does not address static variables inside a non-static class. I now know it does not matter, however, the "duplicate" does not say this.