A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C# program to demonstrate the Flags Attribute
Q:

C# program to demonstrate the Flags Attribute

0

C# program to demonstrate the Flags Attribute

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 Flags attribute is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//Program to demonstrate the FlagAttribute in C#

using System;

class Sample
{
    enum Weeks
    {
        Sun = 1, Mon = 2, Tue = 4, Wed = 8, 
    }


    [Flags]enum WeekFlags
    {
        Sun = 1, Mon = 2, Tue = 4, Wed = 8
    }

    // Main Method 
    public static void Main(string[] args)
    {
        Console.WriteLine((Weeks.Tue | Weeks.Wed).ToString());
        Console.WriteLine((WeekFlags.Tue | WeekFlags.Wed).ToString());
    }
}

Output:

12
Tue, Wed
Press any key to continue . . .

Explanation:

In the above program, we created a Sample class that contains two enumerations Weeks and WeekFlags. Here, WeekFlags enumeration is declared with Flags attribute. The Sample class also contains the Main() method. The Main() method is the entry point for the program.

Console.WriteLine((Weeks.Tue | Weeks.Wed).ToString());

The above statement will print 12 after performing bitwise or operation on the console screen.

Console.WriteLine((WeekFlags.Tue | WeekFlags.Wed).ToString());

The above statement will print "Tue, Wed" after performing bitwise or operation on the console screen because we used Flags attribute with WeekFlags enumeration.

 

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now