Fan.Sys.Range.makeExclusive C# (CSharp) Method

makeExclusive() public static method

public static makeExclusive ( long start, long end ) : Range
start long
end long
return Range
        public static Range makeExclusive(long start, long end)
        {
            return new Range(start, end, true);
        }