Skip to content

Instantly share code, notes, and snippets.

@jessemlay
Created February 15, 2021 19:50
Show Gist options
  • Save jessemlay/ae824dd78d7bd1d162c2d8062afa3d06 to your computer and use it in GitHub Desktop.
Save jessemlay/ae824dd78d7bd1d162c2d8062afa3d06 to your computer and use it in GitHub Desktop.
useful extension methods
public static class MyExtensions
{
public static bool IsBetween<T>(this T value, T min, T max) where T : IComparable
{
return (min.CompareTo(value) <= 0) && (value.CompareTo(max) <= 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment