Skip to content

Add .Between extension methods #9

Description

@DualBrain

It is very often that you would like to check to see if a value is between two other values. I've been utilizing a set of extension methods that seems to provide a means to ease this as well as provide for an easier to understand implementation...

If value >= minimum AndAlso value <= maximum Then

versus

If value.Between(minimum, maximum) Then

This, of course, requires several overloaded versions; numeric, date, etc. Thoughts?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions