Fan.Sys.Range.make C# (CSharp) Méthode

make() public static méthode

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