FromIndices() public static method

public static FromIndices ( int start, int end ) : Range
start int
end int
return Range
Example #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)));
 }