Home / C# Programming / Enumerations :: Discussion

Discussion :: Enumerations

  1. Which of the following statements are correct about an enum used inC#.NET?

    1. To use the keyword enum, we should either use [enum] or System.Enum.
    2. enum is a keyword.
    3. Enum is class declared in System.Type namespace.
    4. Enum is a class declared in the current project's root namespace.
    5. Enum is a class declared in System namespace.

  2. A.
    1, 3
    B.
    2, 4
    C.
    2, 5
    D.
    3, 4

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment