S
shapper
Hello,
I am trying to create a method that checks if a value is in a range:
public static bool Range(double value, double? minimum, double?
maximum) {
....
Is it possible to make this function to check ranges of any type of
numerical values?
For example, I could want to test the range of int values ...
Thanks,
Miguel
I am trying to create a method that checks if a value is in a range:
public static bool Range(double value, double? minimum, double?
maximum) {
....
Is it possible to make this function to check ranges of any type of
numerical values?
For example, I could want to test the range of int values ...
Thanks,
Miguel