Is it possible to do a nested enum?
For example,
private enum inside0{a,b,c}
private enum inside1{d,e,f}
private enum outside{inside0 , inside1}
outside _variable=outsi de.inside0.a; //error here, but want a similar way
Is it possible to set the _variable in the way similar to the above?
Thanx
For example,
private enum inside0{a,b,c}
private enum inside1{d,e,f}
private enum outside{inside0 , inside1}
outside _variable=outsi de.inside0.a; //error here, but want a similar way
Is it possible to set the _variable in the way similar to the above?
Thanx
Comment