vote up 3 vote down star

I have this code;

using System;

namespace Rapido
{
    class Constants
    {
        public static const string FrameworkName = "Rapido Framework";
    }  
}

Visual Studio tells me: The constant 'Rapido.Constants.FrameworkName' cannot be marked static

How can I make this constant available from other classes without having to create a new instance of it? (ie. directly accessing it via Rapido.Constants.FrameworkName)

flag

4 Answers

vote up -10 vote down check

Make the class and the field public, like so:

public class Constants
    {
        public static const string FrameworkName = "Rapido Framework";
    }

Set the permissions appropriate to how you wish the code to be exposed. If you want this method available publicly, make it so. In C#, classes are restricted to internal by default.

link|flag
6  
you've accepted it, but it doesn't compile! – Mitch Wheat May 9 at 3:30
see my answer below.... – Mitch Wheat May 9 at 3:31
@Mitch If this is a class to only store constant values, then it does make sense to declare the class as static (and final for that matter), but I don't understand why you don't think it should compile. How so? – Cuga May 9 at 3:35
Plus it should still compile whether the class is static or not. What do you mean, Mitch? – Cuga May 9 at 3:37
You can't declare a field as static and constant. Remember that Constants are copied at compile time. And if you ever change the value later you will only affect Assemblies that are recompiled with the new constant value. – Matthew Whited May 9 at 3:41
show 11 more comments
vote up 12 vote down

A const is already static as it cannot change between instances.

link|flag
Right... so I don't understand why the compiler balks when you explicitly denote it as such... – Cuga May 9 at 3:53
2  
what is there to understand? That's the way its implemented! – Mitch Wheat May 9 at 3:56
I understand that's the way it's implemented. I'm asking why it's done that way. – Cuga May 9 at 4:08
3  
Take care not to confuse const and static, they mean different things. const refers to an item's value whereas static refers to how an items storage is allocated. See stackoverflow.com/questions/842609/… – Tim Long May 9 at 5:08
vote up 15 vote down
public static class Constants
{
    public const string FrameworkName = "Rapido Framework";
}
link|flag
2  
I think this is actually the right way of doing it. – Hemant May 9 at 3:32
It is! ......... – Mitch Wheat May 9 at 3:34
Sorry I was reading it wrong. But why would you do this? This class would effectively contain nothing. And if you were to ever change this value you would have to recompile everything. It would be better to have this be a static readonly field. – Matthew Whited May 9 at 3:36
1  
The poster asked for a way of not instantiating a class, and have it contain constants. – Mitch Wheat May 9 at 3:38
3  
You wouldn't have to create an instance to get to the constant value. Constants work just like statics. Other than they are copied at compile time instead of referenced. – Matthew Whited May 9 at 3:42
show 1 more comment
vote up 4 vote down

You don't need to declare it as static - public const string is enough.

link|flag
2  
In fact it is an error to declare it static because that would imply that memory allocation and runtime initialisation needs to take place, neither of which is needed for a constant. – Tim Long May 9 at 5:23

Your Answer

Get an OpenID
or

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