HomeCSharpHow to cast an integer to Enum in C# ?

How to cast an integer to Enum in C# ?

Below is a sample code snippet demonstrating on casting an integer to enum in C#.

How to cast an integer to Enum in C# ?

using System;

namespace GinktageConsoleApp
{
    public enum Movie
    {
        Kaththi = 1,
        Lingaa = 2,
        YennaiArinthal = 3
    }

    internal class Program
    {
        private static void Main(string[] args)
        {
            Movie BlockBuster = (Movie)1;
            Console.WriteLine(BlockBuster.ToString());
            Console.ReadLine();
        }
    }
}

Output

Kaththi

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...