Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace revision
- {
- public static class NumberExtensions
- {
- public static bool IsBetween(this int value , int min , int max)
- {
- if(value < min || value > max)
- return false;
- return true;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement