Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 197561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:51:48+00:00 2026-05-11T16:51:48+00:00

I have the following Enum: Public Enum myEnum As Integer first = &H1 second

  • 0

I have the following Enum:

Public Enum myEnum As Integer  
    first = &H1
    second = &H2
    third = &H4
    fourth = &H8
    fifth = &H10
    sixth = &H20
End Enum

It is neccessary, unfortunately, that the enum elements have those values, or at least have values that can be binary compared.

I have a class which can be set during construction to be one of two types, a type with values relating to first through fourth, and a second type with values relating to first through sixth.

I would like to use a For loop to iterate through 1-4 or 1-6 elements of the enum, but I have found that this code:

For enumType as myEnum = myEnum.first to myEnum.fourth
Next

iterates through {1,2,3,4,5,6,7,8} and not through {1,2,4,8}.
This is not ideal.

Obviously I can code around this issue, but I can see a scenario where that workaround could be easily missed in maintenance programming, and I’m hoping someone can recommend a simple solution that won’t break if, for example, the values in the enum have to change at a later date.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T16:51:49+00:00Added an answer on May 11, 2026 at 4:51 pm

    Sorry for C#:

    static IEnumerable<T> EnumRange<T>(T begin, T end)
    {
        T[] values = (T[])Enum.GetValues(typeof(T));
        int beginIndex = Array.IndexOf(values, begin);
        int endIndex = Array.IndexOf(values, end);
    
        for(int i = beginIndex; i <= endIndex; ++i)
            yield return values[i];
    }
    
    foreach(MyEnum e in EnumRange(MyEnum.First, MyEnum.Fourth)
        // Code goes here
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 148k
  • Answers 148k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer SMF does its query counting by having its own custom… May 12, 2026 at 9:25 am
  • Editorial Team
    Editorial Team added an answer Yes. As with most python try it and see. It… May 12, 2026 at 9:25 am
  • Editorial Team
    Editorial Team added an answer The dot key is 46, just allow it in the… May 12, 2026 at 9:25 am

Related Questions

I have decided it is impossible to do the following (equivalent) enum operations via
Is there a way to share an enum definition between native (unmanaged) C++ and
I have declared an enum in my server code, and would like my client
I have the following VB.net interface that I need to port to C#. C#

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.