Answers for "c# Enum class"

3

enumeratio nc sharp

enum Products
{
	Apple = 0,
    Milk = 1,
    Vodka = 2,
}

Console.Writeline(Products.Milk); // Output = Milk
Console.Writeline((int)Products.Milk); // Output = 1
Posted by: Guest on October-14-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
4

c# string enum

public static class Status
{
    public const string Awesome = "Awesome";
    public const string Cool = "Cool";
}
//Not an enum but has a similar effect without needing to convert ints
Posted by: Guest on November-12-2020
1

c# global enumerator

public class ClassName
{      
  // ... Other class members etc.
}

// Enum declared outside of the class
public enum Direction
{
  north, south, east, west
}
Posted by: Guest on April-21-2020
0

enum c#

Random random = new Random();
int randomNumber1 = random.Next(0, 300);
int randomNumber2 = random.Next(0, 300);
Posted by: Guest on February-22-2021
0

C# enum

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

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language