Saved Bookmarks
| 1. |
What Is Enumeration In F#? |
|
Answer» Enumeration is popularly known as ENUMS. It is a COMBINATION of LABEL and value pair. LABELS are assigned to a subset of the values. You can use them in place of literals to make code more READABLE and maintainable. Enumeration is popularly known as enums. It is a combination of label and value pair. Labels are assigned to a subset of the values. You can use them in place of literals to make code more readable and maintainable. |
|