HomeCSharpHow to Find if the Enum value is valid in C# ?

How to Find if the Enum value is valid in C# ?

You might encounter an scenario where you have to find out if the integer value that is passed needs to be validated to find if this value exists within the Enumeration.

How to Find if the Enum value is valid in C# ?

The .NET Framework provides the Enum.IsDefined method to validate. Here’s a simple code snippet demonstrating how to use Enum.IsDefined method.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Ginktage
{
    enum Designation
    {
        Trainee=1,
        SoftwareEngineer = 2,
        SeniorSoftwareEngineer=5
    };
    internal class Program
    {
        private static void Main(string[] args)
        {
            Designation enumvalue = (Designation)100;
            if (Enum.IsDefined(typeof(Designation),enumvalue))
            Console.WriteLine("Valid Enum");
            Console.ReadLine();
        }     
    }
    
}

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

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...