vote up 4 vote down star
1

I want some variables to be global across the the project and accessible in every form. How can I do this?

flag

69% accept rate

5 Answers

vote up 12 vote down check

yes you can by using static class. like this:

static class Global
{
    private static string _globalVar = "";

    public static string GlobalVar
    {
        get { return _globalVar; }
        set { _globalVar = value; }
    }
}

and for using any where you can write:

GlobalClass.GlobalVar = "any string value"
link|flag
5  
+1 for exposing the value through a property; this gives the possibility to later add locking mechanisms if needed, without altering how already existing code accesses the value. – Fredrik Mörk Aug 18 at 13:51
Correct me if I'm wrong but _globalVar needs to be marked as static too. – rein Aug 18 at 14:27
vote up 5 vote down

Or you could put your globals in the app.config

link|flag
I've started to wrap my app.config up in a static class, that allows strongly typed access to the settings. That way I like to think I have the best of both worlds - configurability and strong typing) – Martin Pritchard Aug 18 at 15:40
vote up 5 vote down

You can use static class or Singleton pattern.

link|flag
vote up 0 vote down

One way,

Solution Explorer > Your Project > Properties > Settings.Settings. Click on this file and add define your settings from the IDE.

Access them by

Properties.Settings.Default.MySetting = "hello world";

link|flag
vote up -1 vote down
public static MyGlobals
{
  public static string Global1 = "Hello";
  public static string Global2 = "World";
}

public class Foo
{

    private void Method1()
    {
       string example = MyGlobals.Global1;
       //etc
    }
}
link|flag
1  
-1 for buggy code. These few lines of code are rife with bugs. No class specification, the Global variables are not as marked static ... that's four compilation bugs right there. – psasik Aug 18 at 14:03
thanks all you guys, i am only allowed to select one so the first one got it..but thanks to all... – King Aug 18 at 14:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.