Equals comparison for Enum value : Enum « Data Types « VB.Net






Equals comparison for Enum value

 


<Flags> Public Enum Pets As Integer
   None = 0
   Dog = 1
   Cat = 2
   Bird = 4
   Rodent = 8
   Reptile = 16
   Other = 32
End Enum


Public Module Example
   Public Sub Main()
        Dim familyPets As Pets = Pets.Dog Or Pets.Cat
        If familyPets = Pets.None Then
           Console.WriteLine("The family has no pets.")
        Else
           Console.WriteLine("The family has pets.")   
        End If
    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.The days of the week, and their corresponding values in the Days Enum
20.Output the enum underline values
21.Combine the flag enum values
22.Enum.CompareTo compares this instance to a specified object and returns an indication of their relative values.
23.Enum.Equals Method returns a value indicating whether this instance is equal to a specified object.
24.Enum.GetName Method retrieves the name of the constant in the specified enumeration that has the specified value.
25.Enum.GetNames Method retrieves an array of the names of the constants in a specified enumeration.
26.Enum.GetValues Method retrieves an array of the values of the constants in a specified enumeration.
27.Enum.HasFlag Method tells whether one or more bit fields are set in the current instance.
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.