FromIndices() 공개 정적인 메소드

public static FromIndices ( int start, int end ) : Range
start int
end int
리턴 Range
예제 #1
0
 public static Range Combine(Range x, Range y)
 {
     return(Range.FromIndices(Math.Min(x.Start, y.Start), Math.Max(x.End, y.End)));
 }