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);
        }