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.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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...
versus
This, of course, requires several overloaded versions; numeric, date, etc. Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions