No hard core code :) but might be useful to get simplified controls of int size...
public static class IntExtension
{
public static bool GreaterThan(this int x, int value)
{
return (x > value);
}
public static bool LessThan(this int x, int value)
{
return (x < value);
}
}
Fork
0 Feedback
You must log in before you can give any feedback
You must log in before you can post a comment


361
0




Mark 'c#' tag as 'like'
Mark 'c#' tag as 'ignore'