Q:

C# program to demonstrate the HasFlag() method of Enum class

belongs to collection: C# Enum Class Programs

0

Syntax:

    bool Enum.HasFlag(Enum flag);

Parameter:

Here we pass the flag of a created enum.

Return value:

This method returns the boolean value if the bit field is set then it returns true otherwise it returns false.

Exception:

  • System.ArgumentException;
  •  

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to demonstrate the HasFlag() method of Enum class is given below. The given program is compiled and executed successfully.

using System;

class Sample
{
    enum Directions { EAST=0,WEST=1,NORTH=2,SOUTH=3};
   
    //Entry point of Program
    static public void Main()
    {
        Directions[] direction = { Directions.WEST,Directions.SOUTH,Directions.EAST };

        //EAST   0  00
        //WEST   1  01
        //NORTH  2  10
        //SOUTH  3  11

        foreach (Directions dir in direction)
        {
            Console.WriteLine("High bits:");
            if (dir.HasFlag(Directions.WEST))
                Console.WriteLine("\tWEST");

            if (dir.HasFlag(Directions.EAST))
                Console.WriteLine("\tEAST");
        }
    }
}

Output:

High bits:
        WEST
        EAST
High bits:
        WEST
        EAST
High bits:
        EAST
Press any key to continue . . .

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# program to demonstrate the IsDefined() method o... >>
<< C# program to demonstrate the GetUnderlyingType() ...