J
Jerry
I have a public class myClass that has public emum state...
public class myClass
{
public emum state {bind=0, noBind=1, etc... };
static myClass{}
}
I want to be able to access the state enum without having to instantiate
myClass in the code..
I just want to be able to access myClass.state.bind etc...
I believe there is a key word that I need to use in the declaration of
myClass..
Thanks,
Jerry
public class myClass
{
public emum state {bind=0, noBind=1, etc... };
static myClass{}
}
I want to be able to access the state enum without having to instantiate
myClass in the code..
I just want to be able to access myClass.state.bind etc...
I believe there is a key word that I need to use in the declaration of
myClass..
Thanks,
Jerry