SyntaxFix
Write A Post
Hire A Developer
Questions
another possible solution:
public enum @base { x, y, z } public enum consume { x = @base.x, y = @base.y, z = @base.z, a,b,c } // TODO: Add a unit-test to check that if @base and consume are aligned
HTH