Hi All

I was working on a proj in which I wanted to go through various directories one after the otehr using enum.

Now say from root node 2 branches are coming out- US and Japan and from each of these are further branching into CA1 and CA2.

So the problem is first set of enums were named like

public enum enum1
{
                      US =1,
                      Japan =2,

}

Now I was wondering if I can name my 2nd enum like

public enum enum2
{
                      US\\CA1 =1,
                      US\\CA2 =2,
                      Japan\\CA1 =3,
                      Japan\\CA2 =4,

}

And yes I would like to have the US and Japan in the path

Thank you

Regards
ajay

My GUESS is that this is c++. If its some other language than let me know and I'll move it again.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.