Answers for "get enum by value c#"

C#
1

c# get enum value from string

//This example will parse a string to a Keys value
Keys key = (Keys)Enum.Parse(typeof(Keys), "Space");
//The key value will now be Keys.Space
Posted by: Guest on April-28-2020
0

how to pass string value to enum in c#

MyEnum myEnum = (MyEnum)Enum.Parse(typeof(MyEnum), myString);
Posted by: Guest on December-11-2020
1

c# get enum name from value

string name=(weekdays)2;//returns weekdays which has value 2.Here weekdays is enum name
Posted by: Guest on March-03-2021
0

get an enum by value in C#

using System;
 
public class Example
{
    public enum Days
    {
        Monday = 1,
        Tuesday = 2,
        Wednesday = 3,
        Thursday = 4,
        Friday = 5,
        Saturday = 6,
        Sunday = 7
    }
 
    public static void Main()
    {
        int value = 5;
 
        string day = Enum.GetName(typeof(Days), value);
        Console.WriteLine(day);
    }
}
 
/*
    Output: Friday
*/
Posted by: Guest on September-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language