vote up 1 vote down star

Hi guys

I am trying how figure how to setup like for instance

Color.RGG.Black which equal to "#000000"

I am trying to make it similar like that and implement into my Constants Class. How do I do this?

Constants.Page.Title.MyCase equal to "My Case";

Thanks

flag

70% accept rate

1 Answer

vote up 5 vote down check

You can set that up by using nested static classes:

public static class Constants
{
    public static class Page
    {
        public static class Title
        {
            public const string MyCase = "MyCase";
        }
    }
}
link|flag
1  
You could also use Namespaces instead of nesting classes, it's probably a more elegant solution. – Kane Aug 5 at 7:21
1  
Although the original poster said they wanted it within their 'Constants' class, though that may have been just because they didn't realise namespaces could be used. – Jamie Love Aug 5 at 8:48
1  
@Kane: yes this could also be achieved with namespaces. That may be the more elegant way, unless you also want constants defined on "intermediate" levels (such as Constants.SomeValue or Constants.Page.SomeOtherValue). – Fredrik Mörk Aug 5 at 9:05

Your Answer

Get an OpenID
or

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