ENUM's in X++
what is ENUM?
ans:
-> Enum is a list of literals.
-> X++ does not support constants but as enumerable type (Enum).
-> Enum values are represented internally as integers.
-> The first literal has number 0, the next has number 1, the next has number 2, and so on.
Comments
Post a Comment