Hello everyone,


Suppose I have two enums which has an item with the same names -- but different values,

Code:
enum foo {
          
          NAME = 100;
}

enum goo {
          
          NAME = 200;
}
Are there any ways to specify whether I need to access NAME in foo or NAME in goo?


thanks in advance,
George