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