Enum Type : Enum « Data Type « Visual C++ .NET






Enum Type

 
#include "stdafx.h"
using namespace System;

enum class PrimeColors { Red, Blue, Yellow };

void main()
{
    PrimeColors color;

    color = PrimeColors::Blue;

    switch (color)
    {
        case PrimeColors::Red :
            Console::WriteLine("Red");
            break;
        case PrimeColors::Blue :
            Console::WriteLine("Blue");
            break;
        case PrimeColors::Yellow :
            Console::WriteLine("Yellow");
            break;
    }

    Console::WriteLine(color.ToString());
}

   
  








Related examples in the same category

1.Create an Enumeration
2.enum type specified
3.enum format
4.Use the bitwise OR operator to combine flags
5.Use the Format method of the Enum class
6.Specify the hex representation when converting enum to string
7.enum class type