Fan.Sys.Range.make C# (CSharp) Метод

make() публичный статический Метод

public static make ( long start, long end, bool exclusive ) : Range
start long
end long
exclusive bool
Результат Range
        public static Range make(long start, long end, bool exclusive)
        {
            return new Range(start, end, exclusive);
        }