M
Mike P
I am trying to test if a number is between and certain range. Is there
a clever C# way to do it that is better than this?
if (((Convert.ToInt64(strRequestSpecific)) >=
(Convert.ToInt64(strStartRangeLessZero))) &&
((Convert.ToInt64(strRequestSpecific)) <=
(Convert.ToInt64(strEndRangeLessZero))))
{
}
Thanks,
Mike
a clever C# way to do it that is better than this?
if (((Convert.ToInt64(strRequestSpecific)) >=
(Convert.ToInt64(strStartRangeLessZero))) &&
((Convert.ToInt64(strRequestSpecific)) <=
(Convert.ToInt64(strEndRangeLessZero))))
{
}
Thanks,
Mike