Enum.HasFlag Method tells whether one or more bit fields are set in the current instance. : Enum « Data Types « VB.Net






Enum.HasFlag Method tells whether one or more bit fields are set in the current instance.

 


<Flags> Public Enum Pet
   None = 0
   Dog = 1
   Cat = 2
   Bird = 4
   Rabbit = 8
   Other = 16
End Enum

Module Example
   Public Sub Main()
      Dim petsInFamilies() As Pet = { Pet.None, Pet.Dog Or Pet.Cat, Pet.Dog }
      Dim familiesWithoutPets As Integer
      Dim familiesWithDog As Integer

      For Each petsInFamily In petsInFamilies
         If petsInFamily.Equals(Pet.None) Then
            familiesWithoutPets += 1 
         Else If petsInFamily.HasFlag(Pet.Dog) Then
            familiesWithDog += 1
         End If
      Next
      Console.WriteLine(familiesWithoutPets)   
      Console.WriteLine(familiesWithDog)   
   End Sub
End Module

   
  








Related examples in the same category

1.Convert Enum element to int and call ToStringConvert Enum element to int and call ToString
2.Convert Element in Enum to IntegerConvert Element in Enum to Integer
3.Enum TemperaturesEnum Temperatures
4.Convert Enum to IntConvert Enum to Int
5.Use Enum to define Access LevelUse Enum to define Access Level
6.Enum data DemoEnum data Demo
7.Enum Class provides the base class for enumerations.
8.Using type to convert integer to Enum
9.Convert Enum value back and forth
10.Check if the backend value is defined for an Enum
11.Get Enum underline type
12.Enum parse String value to Enum
13.Use TryParse to parse string value to Enum
14.Get Enum value names
15.Get Enum values
16.Flag Enum values
17.Or operation on Flag enum value
18.And Operation on Flag enum value
19.Equals comparison for Enum value
20.The days of the week, and their corresponding values in the Days Enum
21.Output the enum underline values
22.Combine the flag enum values
23.Enum.CompareTo compares this instance to a specified object and returns an indication of their relative values.
24.Enum.Equals Method returns a value indicating whether this instance is equal to a specified object.
25.Enum.GetName Method retrieves the name of the constant in the specified enumeration that has the specified value.
26.Enum.GetNames Method retrieves an array of the names of the constants in a specified enumeration.
27.Enum.GetValues Method retrieves an array of the values of the constants in a specified enumeration.
28.Check flag Enum combination
29.Enum.IsDefined Method tells whether a constant with a specified value exists in a specified enumeration.
30.Call IsDefined with invalid underlying integral value.
31.Call IsDefined with string containing member name.
32.Call IsDefined with a variable of type PetType.
33.Call IsDefined with uppercase member name.
34.Call IsDefined with combined value
35.Enum.Parse Method converts string to an enumerated object.
36.Enum.Parse Method converts string to enumerated object
37.Sample for Enum.ToString(String)
38.Enum.ToString Method converts the value to string representation.
39.Convert Enum value to string with ToString method
40.Enum.TryParse(TEnum) converts string to enumerated object
41.Enum.TryParse(TEnum) converts string to enumerated object
42.Enum value ToString: G F D X
43.FlagsAttribute Indicates that an enumeration can be treated as a bit field; that is, a set of flags.