Skip to content

Add .Between extension methods #9

@DualBrain

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions