Convert Enum value back and forth : Enum « Data Types « VB.Net






Convert Enum value back and forth

 

Public Enum Status As Integer
   Late = -1
   OnTime = 0
   Early = 1
End Enum

Public Module Example
   Public Sub Main()

        Dim number As Integer = -1
        Dim arrived As Status = CType(Status.ToObject(GetType(Status), number), Status)
    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.Check if the backend value is defined for an Enum
10.Get Enum underline type
11.Enum parse String value to Enum
12.Use TryParse to parse string value to Enum
13.Get Enum value names
14.Get Enum values
15.Flag Enum values
16.Or operation on Flag enum value
17.And Operation on Flag enum value
18.Equals comparison for 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.