Created
August 18, 2015 15:26
-
-
Save runewake2/b98947361a7f82eb6b6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static int Compare<TCompare>(TCompare first, TCompare second) where TCompare : IComparable | |
{ | |
return first.CompareTo(second); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment