Created
April 16, 2020 20:11
-
-
Save enisn/8a2a894e4912260b00d46507beed8068 to your computer and use it in GitHub Desktop.
Challenge #1 - Solution 2 - IRange{T}.cs
This file contains hidden or 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 interface IRange<T> : IFilterableType where T :struct, IComparable | |
{ | |
T? Min { get; set; } | |
T? Max { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment