Is there any way to define a constant for an entire namespace, rather than just within a class? For example:

namespace MyNamespace
{    
    public const string MY_CONST = "Test";

    static class Program
    {
    }
}

Gives a compile error as follows:

Expected class, delegate, enum, interface, or struct

link|improve this question

3  
Note that "constant variable" is an oxymoron. Variables vary, that's why they're called "variables". Constants remain constant, that's why they're called constants. Variables are storage locations, constants are values. They are completely different; there can be no such thing as a "constant variable". – Eric Lippert May 12 '10 at 14:14
Good point - corrected – pm_2 May 12 '10 at 14:48
feedback

4 Answers

up vote 21 down vote accepted

I believe it's not possible. But you can create a Class with with only constants.

public static class GlobalVar
{
    public const string MY_CONST = "Test";
}

and then use it like

class Program
{
    static void Main()
    {
        Console.WriteLine(GlobalVar.MY_CONST);
    }
}
link|improve this answer
1  
+1 as this is the Microsoft recommended method msdn.microsoft.com/en-us/library/bb397677.aspx – Bryan May 12 '10 at 11:41
feedback

This is not possible

From MSDN:

The const keyword is used to modify a declaration of a field or local variable.

Since you can only have a filed or local variable within a class, this means you cannot have a global const.

link|improve this answer
feedback

No, there is not. Put it in a static class or enum.

link|improve this answer
feedback

I'm not sure, but I think that defeats the purpose of OOP. OOP is basically objects 'talking' to each other. And you want to declare the variable in the 'Matrix' full of objects. Namespaces are used to segregate the code.

Maybe use static class instead?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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