SnipZard
Search snippets
Home
Portfolio
Contact
Enums
Enums allow you to define a set of named constants.
Snippet:
enum
Direction
{
Up
,
Down
,
Left
,
Right
}
Copy Code
Example:
enum
Color
{
Red
=
"RED"
,
Blue
=
"BLUE"
,
Green
=
"GREEN"
}
Copy Code