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

make() public static method

public static make ( long start, long end, bool exclusive ) : Range
start long
end long
exclusive bool
return Range
        public static Range make(long start, long end, bool exclusive)
        {
            return new Range(start, end, exclusive);
        }