I don't see an option such Explicit, that allows to use the name of the enum as a namespace. This means that the member names of the enums must be unique.
Enum MyEnum
option1 = 1
option2
option3
End Enum
Enum MyEum2
option1 = 10
End Enum
print option1
print option2
print option3
In the above code, the use of option1 = 10 in the second enum causes that option1 = 1 is no longer accessible. If Explicit was available, we could use MyEnum.Option1 and MyEnum2.Option2.
And what is worse, the second option1 replaces silently the first option1, without giving an error.