Answers for "C# enum"

C#
10

c# enum

enum Season
{
    Spring,
    Summer,
    Autumn,
    Winter
}
Posted by: Guest on February-04-2020
2

c# enum

// ---------------------- HOW TO USE ENUMS? ----------------------- //

// How to create?

public enum Colors   // It needs to be defined at the namespace level (outside any class)! 
{
	red = 1,
    green = 2,
    blue = 3,
    white = 4,
    black = 5

}

// How to get the values?

var itemRed = Colors.red;

Console.WriteLine((int)itemRed);  // Using casting to convert to int


// How to get the keys?

var itemX = 4;

Console.WriteLine((Colors)itemX);  // Using casting to convert to Colors
 

// How to convert enums to strings? 

var itemBlue = Colors.blue;

Console.WriteLine(itemBlue.ToString());


// How to convert strings to enums? 

var colorName = "green";

var enumName = (Colors)Enum.Parse(typeof(Colors), colorName);

Console.WriteLine(enumName);       // To see the key
Console.WriteLine((int)enumName);  // To see the value
Posted by: Guest on September-15-2020
0

C# enum

enum Season
{
    Spring,
    Summer,
    Autumn,
    Winter
}
Posted by: Guest on May-31-2020
0

C# enum

enum CellphoneBrand { 
        Samsung,
        Apple,
  		LG,
  		Nokia,
  		Huawei,
  		Motorola
    }
Posted by: Guest on November-08-2020
0

c# enum

enum Level 
{
  Low,
  Medium,
  High
}

Level myVar = Level.Medium;
Console.WriteLine(myVar);
Posted by: Guest on May-23-2021
0

c# enum

enum Level 
{
  Low,
  Medium,
  High
}
Posted by: Guest on March-07-2021
0

c# enum

enum Level 
{
  Low,
  Medium,
  High
}

//You can access enum items with the dot syntax:
Level myVar = Level.Medium;
Console.WriteLine(myVar);
Posted by: Guest on July-01-2021

C# Answers by Framework

Browse Popular Code Answers by Language