Create an Enumeration : Enum « Data Type « Visual C++ .NET






Create an Enumeration

 


#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
enum { ONE = 1, TWO, THREE, FOUR, FIVE = 5, SIX };
int main(void) {
    Console::WriteLine(ONE);
    Console::WriteLine(TWO);
    Console::WriteLine(THREE);
    Console::WriteLine(FIVE);
    Console::WriteLine(SIX);
    return 0;
}

   
  








Related examples in the same category

1.Enum Type
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