Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8210415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:04:01+00:00 2026-06-07T10:04:01+00:00

I know that when you use a static variable it’s value is shared across

  • 0

I know that when you use a static variable it’s value is shared across all users.

static string testValue = "";
protected void SomeMethod(object sender, EventArgs e)
{
    testValue = TextBox1.Text;        
    string value = TestClass.returnString(TextBox1.Text); // <-- return from a static method
}

So in this case, if one user goes to a website and puts a value into the textbox, the string testValue will be overwritten by another value when another user enters something in the textbox. (I think?)

I now have this class:

public class TestClass
{
  public static string returnString(string msg)
  {
    return msg;
  }
}

My question is: if I use a static method, is the return value of that method shared for all users as well? or is that always a “unique” value per user?

Let’s say that this method is called five times, by five different users, will this static method return the value a particular user has entered, or is it possible that one user gets a value that another user entered?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T10:04:03+00:00Added an answer on June 7, 2026 at 10:04 am

    Your question was:

    my question now is, if i use a static method, is the return value of
    that method shared for all users aswell? or is that always a “unique”
    value per user ?

    And the answer is, it depends. Using your example:

    public class TestClass 
    { 
      public static string returnString(string msg) 
      { 
        return msg; 
      } 
    }
    

    In this case, 5 different users would (most likely) pass in 5 different strings to the static method. Therefore they would get back five differents strings. So for this case:

    string value = TestClass.returnString(TextBox1.Text);
    

    each user would get back whatever they had typed into their own TextBox. If, on the other hand the code was this:

    string value = TestClass.returnString(testValue);
    

    They would all get back what happened to be in the static string at the time of the return.

    So the rule to keep in mind is:

    • If the method uses static member variables, there is a risk of different users affecting each other’s results. This is true regradless of whether the method is static or not.
    • If the method uses only call parameters and local variables, and the call parameters are not themselves pointing to statisc member variables, calls from different users will not affect each other.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When should we use an uninitialized static final variable? I know that an uninitialized
I know that you can use static libraries to manage dependencies for iOS apps.
I know that in java that we use *(asterisk) to import all the contents
I know that you generally initialize a static member variable from within a .cpp
I know that when I use range([start], stop[, step]) or slice([start], stop[, step]) ,
I know that can't use left join in indexed view. but I don't understand
I know that I can use cmp, diff, etc to compare two files, but
I know that we cant use assignment operator in if statements in java as
We know that we can use a concept Java Package, but I just wanted
I know that I can use the statement: [string1 rangeOfString:compareString].location!=NSNotFound to check if a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.