-
-
Couldn't load subscription status.
- Fork 8
-
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?
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
Alternatively, would it make sense to make function to handle this (instead of extension methods)?
If Between(value, minimum, maximum) Then
Additional questions...
Would it make sense to call this something else? Should there be two variants where one is truly between (exclusive) and one is within (inclusive)?
Beta Was this translation helpful? Give feedback.