Range.GetOffsetAndLength(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Calculates the start offset and length of the range object using a collection length.
public:
ValueTuple<int, int> GetOffsetAndLength(int length);
public (int Offset, int Length) GetOffsetAndLength (int length);
member this.GetOffsetAndLength : int -> ValueTuple<int, int>
Public Function GetOffsetAndLength (length As Integer) As ValueTuple(Of Integer, Integer)
Parameters
- length
- Int32
A positive integer that represents the length of the collection that the range will be used with.
Returns
The start offset and length of the range.
Exceptions
length
is outside the bounds of the current range.
Remarks
For performance reasons, this method doesn't validate length
to ensure that it is not negative. It does ensure that length
is within the current Range
instance.