Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / Visual Basic

.NET Enumerated Types Explained

Rate me:
Please Sign up or sign in to vote.
4.60/5 (5 votes)
3 Jul 2010CPOL2 min read 37.2K   10   13
Overview of enumerated types in .NET

Introduction

The purpose of this article is to provide an introduction to .NET enumerated types.

Background

Code readability is a big factor when considering the quality of source code. The easier code is to understand, the easier it is to maintain. Have you ever found yourself using numbers to represent a range of variable values? For example:

VB.NET
Dim CalculationOperation As Integer = 0
CalculationOperation = _ GetOperation ()
Select Case CalculationOperation
    Case 1 ’ Addition
        _PerformAddition()
    Case 2 ‘ Subtraction
        _PerformSubtraction()
    Case 3 ‘ Multiplication
        _PerformMultiplication()
End Select

This requires you as well as any other developers that might touch your code to remember all of the possible numeric values that represents colors. This can be a maintenance nightmare! To solve this problem, VB.NET has enumerated types.

Reasons to Use Enumerated Types

Readability

From Wikipedia:

"In computer programming, an enumerated type (also called enumeration or enum) is a data type consisting of a set of named values called elements, members or enumerators of the type. The enumerator names are usually identifiers that behave as constants in the language."

Enumerated types allow you to give an English description to a range of integer values. Perhaps an example will explain this.

VB.NET
Public Type CalculatorOperations
    Addition       = 1
    Subtraction    = 2
    Multiplication = 3
End Type

Dim Operation As CalculatorOperations
Operation = _ GetOperation ()
Select Case Operation
    Case CalculatorOperations.Addition
        _PerformAddition()
    Case CalculatorOperations.Subtraction
       _PerformSubtraction()
    Case CalculatorOperations.Multiplication
       _PerformMultiplication()
End Select

This routine is easier to read.

When coding a routine, be sure to consider numeric literals that represent a value other than the number itself as a possible reason to create an enumerated type.

Enums as Routine Parameters

Enumerated types are great as routine parameters. Consider the following example.

Bad Example

VB.NET
Dim ApplicationState as Integer = 5 ‘lets say five stands for Fatal Crash!
Sub _SetApplicationState(ByVal State As Integer)

Good Example

VB.NET
Dim ApplicationState As AppState = AppState.FatalCrash
Sub _SetApplicationState(ByVal State As AppState)

If you are using Visual Studio, then you no doubt have noticed the benefit of using enumerated types as function parameters. While you are writing the code to call the routine, intellisense will show you all available members of the enumerated type.

Compiler Type Checking

Using enumerated types also provides type checking by the compiler. Consider the following block of code:

VB.NET
‘Valid color values are 09
Dim CurrentColor As Integer
CurrentColor = 12 ‘invalid color

This is impossible with enumerated types. Enumerated types can make powerful return values. Consider the following code:

VB.NET
Dim LoginResult As Boolean = false
LoginResult = _AttemptLogin()
If LoginResult = True Then
    _Authenticateuser()
End If
If LoginResult = False Then
     _InitiateLogin()
End If

As you can see, true and false allow for two conditions:

VB.NET
Dim LoginResult As AuthResult 
LoginResult = _AttemptLogin()
If LoginResult = AuthResult.Authenticated Then
    _Authenticateuser()
End If

If LoginResult = AuthResult.Failed Then
    _InitiateLogin()
End If

If LoginResult = AuthResult.Suspended Then
    _AlertSuspended()
End If

If LoginResult = AuthResult.AuthenticatedChangePassword Then
    _InitiatePasswordChange()
    _AuthenticateUser()
End If

Do you see the possibilities?

Define the First and Last Entry as Loop Limits

You may find yourself in a situation where you need to iterate through each member of your enumerated type. One suggested practice is to reserve the first and last element as loop limits.

VB.NET
Public Type RGBValue
 RGB_FirstValue = 0
 RGB_Red = 0
 RGB_Green = 1
 RGB_Blue = 2
 RGB_LastValue = 2
End Type

Dim RGBVal As RGBValue
For RGBVal = RGBValue.RGB_FirstValue To RGBValue.RGB_LastValue
 ‘process here
Next

Conclusion

Well, I hope I’ve illustrated some of the benefits of using enumerated types. All of your feedback is welcome.

Thanks,
Bryan James
MCP, MCAD, MCSD.NET
http://www.bytepushers.com
http://www.twitter.com/budbjames

History

Version 1 07/3/2010

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer bytepushers.com
United States United States
I'm a 28 year old software engineer from Tennessee. I've been programming since I was 13 years old. I'm fortunate enough to be able to do what I love for a living.

VB.NET, ASP.NET, C#, assembly, HTML, JavaScript, AJAX

I'm MCP, MCAD, MCSD.NET certified.

follow me on twitter

http://www.twitter.com/budbjames

Comments and Discussions

 
GeneralRe: Needs formatting Pin
SSDiver21126-Jul-10 18:15
SSDiver21126-Jul-10 18:15 
GeneralRe: Needs formatting Pin
#realJSOP7-Jul-10 11:31
mve#realJSOP7-Jul-10 11:31 
GeneralRe: Needs formatting Pin
bjames027-Jul-10 18:29
bjames027-Jul-10 18:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.